validate_excel_range
Verify and ensure the existence and correct formatting of a specified Excel range within a workbook, ensuring data integrity and accuracy for further processing.
Instructions
Validate if a range exists and is properly formatted.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| end_cell | No | ||
| filepath | Yes | ||
| sheet_name | Yes | ||
| start_cell | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "end_cell": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "End Cell"
    },
    "filepath": {
      "title": "Filepath",
      "type": "string"
    },
    "sheet_name": {
      "title": "Sheet Name",
      "type": "string"
    },
    "start_cell": {
      "title": "Start Cell",
      "type": "string"
    }
  },
  "required": [
    "filepath",
    "sheet_name",
    "start_cell"
  ],
  "title": "validate_excel_rangeArguments",
  "type": "object"
}