Skip to content

Get Cell

Type: get-cell  ·  Package: DataTable Activities v1.0.0  ·  Output: object

Gets the value of a column of a row (DataRow) — typically the current row within a For Each over a DataTable. It is the activity version of reading a cell.

Reads column column from row row and returns its value. Save it in an output variable.

ParameterEditorDescription
rowexpressionThe row to read, e.g. = fila (the For Each iteration variable).
columntextColumn name.

Ninguno.

Returns a object with the cell value.

For Each items = = clientes itemVariable = fila
└─ activities:
Get Cell row = = fila column = "Correo" → output: correo
SMTP Send to = = str(correo) subject = "Aviso"