> For the complete documentation index, see [llms.txt](https://help.pickzen.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.pickzen.com/guides/nocode/functions/removefrom.md).

# REMOVEFROM

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

### Syntax

**REMOVEFROM(items, list)**

| Argument name                                | Description                                                                |
| -------------------------------------------- | -------------------------------------------------------------------------- |
| <p><strong>items</strong></p><p>Required</p> | Input list of items, or text with items separated by semicolons to remove. |
| <p><strong>list</strong></p><p>Required</p>  | Source list.                                                               |

### Examples

![](https://1947171238-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LrTaL6FQB3RzlkCwQfN%2F-MA69ciays2tq9XGaNp7%2F-MA6AQ5R1BpvHq5Z4sMx%2Fimage.png?alt=media\&token=c244eb65-3f93-4ccc-9ab1-9fe2b35fcfcc)

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