ADD_COLUMN_AFTER

Adds a column to TargetFrame after a TargetColumnName, named ColumnName of type ColumnType.

Syntax

ADD_COLUMN_AFTER(targetFrame, targetColumnName|targetColumnOffset, columnNameToAdd, [columnType = string])
  • targetFrame - Target Frame.

  • targetColumnName | targetColumnOffset - Target Column Name or Column Offset.

  • columnNameToAdd - Column Name to Add.

  • [columnType = string] - Column Type.

Sample Usage

ADD_COLUMN_AFTER(C1, "number", "point")

Return Value

  • TRUE if function modified the TargetFrame.

  • FALSE otherwise.

Notes

In order for ADD_COLUMN_AFTER to work, the first argument targetFrame must be a FRAME.

See Also

Last updated

Was this helpful?