We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
DataSpread supports a unique value type called Table which returns a group of cells within a range. Functions like SQL and UNION return a Table value.
SQL
UNION
The INDEX function is used in order to view the entries within a Table value.
INDEX
INDEX(table, row, [column])
"table" must be a Table value, while "row" and "column" must be integral Number values.
The rows and columns within a Table value are 1-indexed. When row=0, INDEX operates on the set of table attributes.
When the table only has one column, the column parameter can be omitted.
See the examples in Querying Tables.