concat

Returns a list result that combines two other lists or values.

Function

result = concat(first, second)

Arguments

ArgumentData Type
firstany or list
secondany or list
resultlist

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])