PICKZEN
Ask or search…
K
Comment on page

REMOVEFROM

The REMOVEFROM function removes a list of items from a list.

Syntax

REMOVEFROM(items, list)
Argument name
Description
items
Required
Input list of items, or text with items separated by semicolons to remove.
list
Required
Source list.

Examples

  • Row 1 adds [p1, p2, p3] to a new list named list.
  • Row 2 removes [p2] from the existing list named list.
Results will be:
  • list = [p1, p3]
Last modified 3yr ago