copy_worksheet
Duplicate a worksheet within an Excel workbook by specifying source and target sheet names, enabling efficient data organization and management.
Instructions
Copy worksheet within workbook.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filepath | Yes | ||
source_sheet | Yes | ||
target_sheet | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filepath": {
"title": "Filepath",
"type": "string"
},
"source_sheet": {
"title": "Source Sheet",
"type": "string"
},
"target_sheet": {
"title": "Target Sheet",
"type": "string"
}
},
"required": [
"filepath",
"source_sheet",
"target_sheet"
],
"title": "copy_worksheetArguments",
"type": "object"
}