Set Cell
Set Cell
Section titled “Set Cell”Type: set-cell · Package: DataTable Activities v1.0.0 · Output: none
Sets the value of a column in a row (DataRow).
How it works
Section titled “How it works”Writes value into column column of row row. The value is coerced to the column type.
Required parameters
Section titled “Required parameters”| Parameter | Editor | Description |
|---|---|---|
row | expression | The row to modify, e.g. = row. |
column | text | Column name. |
value | expression | The value to set (adjusted to the column type). |
Optional parameters
Section titled “Optional parameters”None.
Output
Section titled “Output”None — modifies the row in place.
Example
Section titled “Example”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()Related activities
Section titled “Related activities”- Update Data Row — change several columns at once.
- Get Cell — read a cell.
- For Each — loop through the rows of a table.