List Function
Description:
Construct a list of individual values where each value is of the same datatype.
note
Note this is a function with an arbitrary number of parameters.
Returns:
Any*
Parameter:
Parameter | Data Type | Description |
|---|---|---|
* | Any |
Examples:
When using functions inside a field, remember the field brackets:
{List(ClientName, ClientAddressLine1, ClientAddressLine2, ClientCity, ClientState, ClientZip)}
Expression | Result |
|---|---|
List() | List() |
List( "a" ) | List( "a" ) |
List( "a"+"b", "c" ) | List( "ab", "c" ) |