excel_create_table
Convert a specified range into a structured table within an Excel sheet, enabling organized data management. Requires file path, sheet name, and table name for precise execution.
Instructions
Create a table in the Excel sheet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fileAbsolutePath | Yes | Absolute path to the Excel file | |
range | No | Range to be a table (e.g., "A1:C10") | |
sheetName | Yes | Sheet name where the table is created | |
tableName | Yes | Table name to be created |
Input Schema (JSON Schema)
{
"properties": {
"fileAbsolutePath": {
"description": "Absolute path to the Excel file",
"type": "string"
},
"range": {
"description": "Range to be a table (e.g., \"A1:C10\")",
"type": "string"
},
"sheetName": {
"description": "Sheet name where the table is created",
"type": "string"
},
"tableName": {
"description": "Table name to be created",
"type": "string"
}
},
"required": [
"fileAbsolutePath",
"sheetName",
"tableName"
],
"type": "object"
}