excel_create_workbook
Create Excel workbooks with structured worksheets and financial data for analysis, reporting, and accounting workflows.
Instructions
Create a new Excel workbook with specified worksheets and data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
worksheets | Yes |
Input Schema (JSON Schema)
{
"properties": {
"worksheets": {
"items": {
"properties": {
"columns": {
"items": {
"properties": {
"header": {
"type": "string"
},
"key": {
"type": "string"
},
"width": {
"type": "number"
}
},
"type": "object"
},
"type": "array"
},
"data": {
"items": {
"type": "array"
},
"type": "array"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"data"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"worksheets"
],
"type": "object"
}