Skip

This Flow Script tutorial explains how to use the Skip function with syntax and examples.

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.‌

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

Last updated