find_data
Locate specific values within Excel worksheets by specifying file path, sheet name, and search value to streamline data retrieval.
Instructions
ワークシート内で指定された値を検索します
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | Excelファイルのパス | |
searchValue | Yes | 検索する値 | |
sheetName | Yes | ワークシート名 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filePath": {
"description": "Excelファイルのパス",
"type": "string"
},
"searchValue": {
"description": "検索する値",
"type": [
"string",
"number"
]
},
"sheetName": {
"description": "ワークシート名",
"type": "string"
}
},
"required": [
"filePath",
"sheetName",
"searchValue"
],
"type": "object"
}