Skip to content

Remove Data Row

Type: remove-row  ·  Package: DataTable Activities v1.0.0  ·  Output: none

Removes a row from a DataTable by its index (zero-based).

Removes the row at position index (the first row is 0). If the index is out of range, it fails with a clear message.

ParameterEditorDescription
tableexpressionThe DataTable to modify, e.g. = customers.
indexexpressionIndex of the row to remove (zero-based).

None.

None — modifies the table in place.

Remove Data Row table = = people index = 0
Log message = = rowCount(people) + " rows left"