ADDTO

The ADDTO function takes a list of items and adds them all to another list.

Syntax

ADDTO(list, out)

Examples

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

Last updated