The contents of two lists can be combined to construct a new list using the list-add operator (+). The items in the resulting list will be in the order they occurred in the original lists. Duplicate entries will be preserved.
({1, 2, 3} + LIST(2, 3, 4))produces a list ofNumbervalues:1,2,3,2,3,4. See alsoLIST().(Employees[Office Phone] + Employees[Home Phone])produces a list of all employee office and home phone numbers.
The list resulting from list addition will adopt the data type of the left-side list. If the right-side list is of a different data type, this may change how the values taken from it are interpreted.
({3} + {3.14})produces a list ofNumbervalues from a list of oneNumbervalue (3) and a list of oneDecimalvalue (3.14).(LIST() + {3.14})produces a list of oneTextvalue from an empty list (Textby default) and a list of oneDecimalvalue (3.14)