excel_copy_sheet
Copy a specific sheet into a new sheet within an Excel file using absolute path, source sheet name, and destination sheet name as inputs.
Instructions
Copy existing sheet to a new sheet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dstSheetName | Yes | Sheet name to be copied | |
fileAbsolutePath | Yes | Absolute path to the Excel file | |
srcSheetName | Yes | Source sheet name in the Excel file |
Input Schema (JSON Schema)
{
"properties": {
"dstSheetName": {
"description": "Sheet name to be copied",
"type": "string"
},
"fileAbsolutePath": {
"description": "Absolute path to the Excel file",
"type": "string"
},
"srcSheetName": {
"description": "Source sheet name in the Excel file",
"type": "string"
}
},
"required": [
"fileAbsolutePath",
"srcSheetName",
"dstSheetName"
],
"type": "object"
}