rename_worksheet
Rename a specific worksheet within an Excel workbook by specifying the file path, old worksheet name, and new worksheet name.
Instructions
Rename worksheet in workbook.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filepath | Yes | ||
new_name | Yes | ||
old_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filepath": {
"title": "Filepath",
"type": "string"
},
"new_name": {
"title": "New Name",
"type": "string"
},
"old_name": {
"title": "Old Name",
"type": "string"
}
},
"required": [
"filepath",
"old_name",
"new_name"
],
"title": "rename_worksheetArguments",
"type": "object"
}