create_workbook
Generate new Excel workbooks using a specified filepath. Enables efficient workbook creation and supports Excel file manipulation tasks.
Instructions
Create new Excel workbook.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filepath | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filepath": {
"title": "Filepath",
"type": "string"
}
},
"required": [
"filepath"
],
"title": "create_workbookArguments",
"type": "object"
}