Skip to content

Set Cell

Type: set-cell  ·  Package: DataTable Activities v1.0.0  ·  Output: none

Sets the value of a column in a row (DataRow).

Writes value into column column of row row. The value is coerced to the column type.

ParameterEditorDescription
rowexpressionThe row to modify, e.g. = row.
columntextColumn name.
valueexpressionThe value to set (adjusted to the column type).

None.

None — modifies the row in place.

Mark each row as processed while looping the table:

For Each items = = orders itemVariable = row
└─ activities:
Set Cell row = = row column = "Status" value = "Processed"
Set Cell row = = row column = "ProcessedAt" value = = now()