返回 Microsoft Excel
将 Knoon AI 与 Microsoft Excel (Microsoft) 连接以自动化 AI 工作流。
Find all cells in an Excel worksheet that match the given search criteria such as EQUALS, CONTAINS, STARTS_WITH, or ENDS_WITH.
microsoftExcelFindCells
测试版
权限
可选权限
参数
| 名称 | 类型 | 描述 | 必填 |
|---|---|---|---|
| workbookId | file | Select the Excel workbook to search. | 是的 |
| worksheetName | mustache | Name of the worksheet (tab) to search in (e.g. "Sheet1"). | 是的 |
| range | mustache | Optional A1 range (e.g. "A1:D100") to limit the search area. If omitted, the entire worksheet is scanned. | 没有 |
| searchText | mustache | The text to search for inside the cells. | 是的 |
| matchType | string | How to compare the text: EQUALS, CONTAINS, STARTS_WITH, or ENDS_WITH. | 是的 |
| caseSensitive | boolean | Whether the match should be case-sensitive. Default is false. | 没有 |
回报
| 名称 | 类型 | 描述 |
|---|---|---|
| status | string | DONE. |
| found | boolean | Whether at least one matching cell was found. |
| count | number | Total number of matching cells found. |
| cells.value | string | The matched cell value, or empty string if none found. |
| cells.sensitive.rowIndex | number | 1-based row index of the matched cell, or null if none found. |
| cells.sensitive.columnIndex | number | 1-based column index of the matched cell, or null if none found. |
| cells.sensitive.columnLetter | string | Column in letter form (e.g. "A", "B", "AA") for the matched cell, or null if none found. |
| cells.sensitive.a1Notation | string | Cell location in A1 notation (e.g. "B2"), or empty string if none found. |