ADD_COLUMN

Adds a column to TargetFrame at the very end, named ColumnName of type ColumnType.

Syntax

ADD_COLUMN(targetFrame, columnName, [columnType = string])
  • targetFrame - Target Frame.

  • columnName - Column Name.

  • [columnType = string] - Column Type.

Sample Usage

ADD_COLUMN(C1, "number")
ADD_COLUMN(C1, D1)

Return Value

  • TRUE if function modified the targetFrame.

  • FALSE otherwise.

Notes

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

See Also

Last updated

Was this helpful?