Skip to content

Read Excel Cell

Type: excel-read-cell  ·  Package: Excel Activities v1.0.0  ·  Output: object

Reads the value of a single cell. Use it when you only need a specific piece of information: a total in B10, a date in A1, a configuration parameter in a fixed cell.

Returns the value of the indicated cell (cell) of the sheet. Accepts session or path — see the two modes.

ParameterEditorDescription
cellexpressionCell address, e.g. "B3".
ParameterEditorDescription
sessionexpressionExcel Open session (instead of path).
pathexpressionRoute to .xlsx (required if there is no session).
sheetexpressionName or 1-based index of the sheet. By default, the first.

Returns a object with the cell value (text, number, date…). Convert it if you need with toNumber(...), str(...), etc.

Read Excel Cell path = = asset("config.xlsx") sheet = "Parametros" cell = "B2" → output: limite
If condition = = toNumber(limite) > 1000
└─ then:
Log message = "Límite alto"