SelectRange
SelectRange Function
Create a new table using rows that fall between the Start Row and the End Row in the specified source tables.
Syntax
SelectRange (table Table, scalar StartRow, scalar EndRow)
Arguments
| Argument | Description |
|---|---|
table Table | A table of the tables to be used as source material |
scalar StartRow | The first row to be included in the output table |
scalar EndRow | The last row to be included in the output table |
Examples:
SelectRange([[FusionTestTable]],2,4)
Returns the 2nd,3rd and 4th row of the given table.