Back to Microsoft Excel
Connect Knoon AI with Microsoft Excel (Microsoft) to automate AI workflows.
Find the first row in an Excel worksheet where a specific column matches the given value.
microsoftExcelFindRow
BETA
Permissions
Optional permissions
Parameters
| Name | Type | Description | Required |
|---|---|---|---|
| workbookId | file | Select the Excel workbook to search for the matching row. | Yes |
| worksheetName | mustache | Name of the worksheet (tab) to search in (e.g. "Sheet1"). | Yes |
| matchColumn | mustache | Column to search in for the match (e.g. "A" for the first column). | Yes |
| matchValue | mustache | Value to search for in the match column. The first row containing this value will be returned. | Yes |
Returns
| Name | Type | Description |
|---|---|---|
| status | string | DONE. |
| row | array | Values of the first matching row as an array (e.g. ["123", "John Doe", "john@example.com"]). Returns an empty array if no row is found. |
| sensitive.rowIndex | number | 1-based index of the matched row. Null if no row is found. |