ExcelCell_GetValue

Description

Gets the value of a cell in an Excel workbook.


Cell - Mode

SearchMode ESearchCellMode

Indicates how to search for the cell: by coordinates or by name.


Cell Search - By Coordinates

ColIndex InArgument<Int32>

The column index of the Cell to get the value from.

RowIndex InArgument<Int32>

The row index of the Cell to get the value from.


Cell Search - By Name

CellName InArgument<String>

The name of the Cell to get the value from.


Input

Workbook InArgument<Workbook> REQUIRED

The excel Workbook.

It is possible to obtain a new workbook with the activity ExcelWorkbook_New or to get it from an existing file with ExcelWorkbook_Get.

WorksheetName InArgument<String> REQUIRED

The name of the Worksheet where the cell is.


Misc