RemRow function

Removes a row from a table


Description

The RemRow function removes one or more rows at the specified index from a table.


Remove a row

To remove a single row, the first argument is the table and the second argument is the number of the row. The result is a new table from which the specified row was removed.


Syntax

RemRow (table, row)


Remove multiple rows

Optionally, the third argument is the number of rows to be removed. The result is a new table from which the specified rows have been removed.


Syntax

RemRow (table, rows, number)


Examples