Take
This Flow Script tutorial explains how to use the Take function with syntax and examples.
Last updated
This Flow Script tutorial explains how to use the Take function with syntax and examples.
Last updated
The Take function returns a table where the first n rows are included in the result.
The syntax for the Take function is:
Take(table, n)
table - the table with the data.
n - the number of rows to include.
The Take function returns a table.
Let's look at some Take function examples and explore how to use the Take function.