delete_worksheet
Remove a specified worksheet from an Excel workbook. Input filepath and sheet name to delete the desired sheet, streamlining workbook organization and management.
Instructions
Delete worksheet from workbook.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filepath | Yes | ||
sheet_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filepath": {
"title": "Filepath",
"type": "string"
},
"sheet_name": {
"title": "Sheet Name",
"type": "string"
}
},
"required": [
"filepath",
"sheet_name"
],
"title": "delete_worksheetArguments",
"type": "object"
}