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:

idcodename

1

GB

United Kingdom

2

TR

Turkey

3

US

United States

4

IND

India

column name: name

Outputs:

list:

  1. United Kingdom

  2. Turkey

  3. United States

  4. India

-> Created a list from the column name in the datatable.

Last updated