> 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/extract.md).

# EXTRACT

### Syntax

**EXTRACT(table, \[rowSelector, colSelector, includeHeader])**

| Argument name                                        | Description                                                                      |
| ---------------------------------------------------- | -------------------------------------------------------------------------------- |
| <p><strong>table</strong></p><p>Required</p>         | Origin table.                                                                    |
| <p><strong>rowSelector</strong></p><p>Optional</p>   | Selector of rows. All rows by default.                                           |
| <p><strong>colSelector</strong></p><p>Optional</p>   | Selector of columns. All columns by default.                                     |
| <p><strong>includeHeader</strong></p><p>Optional</p> | Determines whether including the header in the resulting table. True by default. |

### Examples

![mytable](/files/-MA5dmJVq-tZGP6DMl08)

* EXTRACT(mytable, '1:2') returns:

![](/files/-MA5dxBDZi58Y7cAo0L_)

* EXTRACT(mytable, '2:3', 'B:C') returns:

![](/files/-MA5e_dkVjbXz4rJEMZo)

* EXTRACT(mytable, '2:', ':C') returns:

![](/files/-MA5ep2a_ehSfosnBCAl)
