copy_range
Transfer a specified cell range within an Excel sheet or between sheets using source and target coordinates. Ideal for reorganizing or duplicating data efficiently.
Instructions
Copy a range of cells to another location.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filepath | Yes | ||
sheet_name | Yes | ||
source_end | Yes | ||
source_start | Yes | ||
target_sheet | No | ||
target_start | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filepath": {
"title": "Filepath",
"type": "string"
},
"sheet_name": {
"title": "Sheet Name",
"type": "string"
},
"source_end": {
"title": "Source End",
"type": "string"
},
"source_start": {
"title": "Source Start",
"type": "string"
},
"target_sheet": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Target Sheet"
},
"target_start": {
"title": "Target Start",
"type": "string"
}
},
"required": [
"filepath",
"sheet_name",
"source_start",
"source_end",
"target_start"
],
"title": "copy_rangeArguments",
"type": "object"
}