create-list-from-datatable
Description
create-list-from-datatable
adaptor creates a list from all the values in a datatable column.
Inputs
data
Type: datatable
Required: Yes
The datatable containing the column values.
column name
Type: text
Required: Yes
The name of the column from which the list will be created.
Outputs
list
Type: list
A list containing the values from the datatable column.
Examples
Example 1: Default behaviour.
Inputs:
data
:
id
code
name
1
GB
United Kingdom
2
TR
Turkey
3
US
United States
4
IND
India
column name
: name
Outputs:
list
:
United Kingdom
Turkey
United States
India
-> Created a list from the column name
in the datatable.
Last updated