Skip to content

Get Column

Type: get-column  ·  Package: DataTable Activities v1.0.0  ·  Output: List<object>

Returns all the values of a column as a list.

Walks the table and returns the values of column column, in row order. Empty cells become null. If the column does not exist, it fails with a clear message. It does not modify the table.

ParameterEditorDescription
tableexpressionThe DataTable to read from, e.g. = customers.
columntextColumn name.

None.

Returns a List<object> with the column values.

Get all emails and join them into a single string:

Get Column table = = customers column = "Email" → output: emails
Log message = = "Recipients: " + join(emails, "; ")