get_cell_value
Retrieve specific cell values from an Excel file by providing the file path, sheet name, and cell location in A1 format.
Instructions
指定されたセルの値を取得します
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cell | Yes | セル位置。A1形式で指定(例: A1, B2, AA10) | |
filePath | Yes | 対象のExcelファイルの絶対パス | |
sheetName | Yes | 対象のワークシート名 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cell": {
"description": "セル位置。A1形式で指定(例: A1, B2, AA10)",
"type": "string"
},
"filePath": {
"description": "対象のExcelファイルの絶対パス",
"type": "string"
},
"sheetName": {
"description": "対象のワークシート名",
"type": "string"
}
},
"required": [
"filePath",
"sheetName",
"cell"
],
"type": "object"
}