validate_formula_syntax
Check Excel formula accuracy without execution by validating syntax in a specified cell and sheet. Ensures correct formula structure before application.
Instructions
Validate Excel formula syntax without applying it.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| cell | Yes | ||
| filepath | Yes | ||
| formula | Yes | ||
| sheet_name | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "cell": {
      "title": "Cell",
      "type": "string"
    },
    "filepath": {
      "title": "Filepath",
      "type": "string"
    },
    "formula": {
      "title": "Formula",
      "type": "string"
    },
    "sheet_name": {
      "title": "Sheet Name",
      "type": "string"
    }
  },
  "required": [
    "filepath",
    "sheet_name",
    "cell",
    "formula"
  ],
  "title": "validate_formula_syntaxArguments",
  "type": "object"
}