copy_range
Transfer cell ranges between locations in Excel workbooks securely using xlwings. Specify source and target ranges to automate data movement without direct file access.
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"
}