Skip to content

Find Value

Searches for a specified value within an Excel worksheet range and returns the cell address, row number, and column number of the first occurrence. Use this activity when you need to locate specific data within a workbook and retrieve its coordinates for further processing.

Properties

NameDescriptionRequired
Cell AddressReturns the address of the cell containing the value (e.g., "B4").
Column NumberReturns the 1-based column number of the cell containing the value (e.g., 2 for cell B4).
RangeCell range to search within (e.g., "A1:C10"). If not provided, defaults to "A1" which searches the entire worksheet.
Row NumberReturns the 1-based row number of the cell containing the value (e.g., 4 for cell B4).
Sheet NameName of the worksheet to search for the value. This property is required and the sheet must exist in the workbook.☑️
ValueThe specific text or numeric value to locate within the worksheet range. This property is required and performs an exact match search.☑️