Skip to content

Update Data Row

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

Updates several columns of a row (DataRow) at once.

Takes a dictionary { column: value } and assigns each value to its column in the row. Each value is coerced to its column type. Columns you don’t mention are left untouched.

ParameterEditorDescription
rowexpressionThe row to modify, e.g. = row.
valuesdictionaryColumns to update as { column: value }.

None.

None — modifies the row in place.

Update name and age of a row at once:

Get Data Row table = = people index = 0 → output: row
Update Data Row row = = row values: { name: "Ana María", age: 40 }