create_table
Transform a specified data range into a native Excel table, enabling structured data management, formatting, and advanced analysis within Excel workbooks.
Instructions
Creates a native Excel table from a specified range of data.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data_range | Yes | ||
filepath | Yes | ||
sheet_name | Yes | ||
table_name | No | ||
table_style | No | TableStyleMedium9 |
Input Schema (JSON Schema)
{
"properties": {
"data_range": {
"title": "Data Range",
"type": "string"
},
"filepath": {
"title": "Filepath",
"type": "string"
},
"sheet_name": {
"title": "Sheet Name",
"type": "string"
},
"table_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Table Name"
},
"table_style": {
"default": "TableStyleMedium9",
"title": "Table Style",
"type": "string"
}
},
"required": [
"filepath",
"sheet_name",
"data_range"
],
"title": "create_tableArguments",
"type": "object"
}