Returns a list result that combines two other lists or values.
Function
result = concat(first, second)
Arguments
Argument | Data Type |
first | any or list |
---|---|
second | any or list |
result | list |
Comments
Returns a single list of items that contains the records of the first input followed by the records of the second input. Either input may be a list or a single value.
Examples
result = concat([Manager], [Direct Reports])
result = concat([External Contacts], [Employees])
result = concat([CEO], [CTO])