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 ofNumber
values: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 ofNumber
values from a list of oneNumber
value (3
) and a list of oneDecimal
value (3.14
).(LIST() + {3.14})
produces a list of oneText
value from an empty list (Text
by default) and a list of oneDecimal
value (3.14
)