# Skip

### **Description**‌

The Skip function returns a table where the first *n* rows have been excluded.

### **Syntax**

‌The syntax for the Skip function is:

`Skip(table, n)`

#### ‌**Parameters**

table - the table with the data.

n - the number of rows to exclude.

### **Returns**

‌The Skip function returns a table.

### **Example**‌

Let's look at some Skip function examples and explore how to use the Skip function.‌

<div align="left"><img src="https://529897662-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LtPTgZOYmpJka4jqs1v%2F-MZmc2hwNmUAnYJ4xByD%2F-MZqLDM_GZhrbVH2wLFi%2Fcolors.jpg?alt=media&#x26;token=6c6e94b4-4c75-454c-94b6-3f5a93d0e473" alt="Example table: colors"></div>

```
Skip(colors, 2)
Result: Id: C3, Color: yellow & Id: C4, Color: blue


Skip([col: "A"] & [col: "B"] & [col: "C"], 1)
Result: <[col: "B"] & [col: "C"]>
```
