TableAction.DeleteRows

 

TableAction.DeleteRows(table as table) as action

Creates an action to delete the rows in table. The action returns a table containing the deleted rows as they appeared in table before the action executed. To delete a subset of the rows in table, use Table.SelectRows to apply a filter to table before using TableAction.DeleteRows. The function raises an evaluation error if table is not updatable. The action raises an execution error if the operation fails.

NOTE: table may be left in a partially updated state if an execution error occurs.

Show: