ADDTO
The ADDTO function takes a list of items and adds them all to another list.
Last updated
The ADDTO function takes a list of items and adds them all to another list.
Last updated
ADDTO(list, out)
Argument name
Description
list
Required
Input list of items, or text with items separated by commas.
out
Required
Existing or new list to add items to.
Row 1 adds [p1, p2, p3] to a new list named list1.
Row 2 adds [p4, p5] to the existing list list1.
Row 3 adds list1 items to list2.
Results will be:
list1 = [p1, p2, p3]
list2 = [p4, p5, p1, p2, p3]