Skip to main content

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

ArgumentDescription
table TableA table of the tables to be used as source material
scalar StartRowThe first row to be included in the output table
scalar EndRowThe 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.