APPEND

Parameters

OrderNameTypeDesc
1AAsset List, Property Lists, Relationship List, MapThe first list
1BAs aboveThe second list

Returns

Places an item of the same type as passed to the command on the stack.

Description

This function combines two lists of the same type into a new list containing all of the distinct items.

If A is ('Alpha', 'Beta', 'Gamma') and B is ('Gamma', 'Delta', 'Epsilon'), the resulting list would be…

('Alpha', 'Beta','Gamma', 'Delta', 'Epsilon')

Note that the duplicate 'Gamma' has been removed.

Example

'Finish Oven Zone 1' ASSET 'Temperature - Oven' PROPERTY VALUES
'Paint Line' ASSET 'Speed - Actual' PROPERTY VALUES APPEND

Combines two queries - the oven temperature on Finish Oven Zone 1, and the actual speed of the Paint Line - into a single response.

Live Example

See Also