apply_formula
Apply Excel formulas to specific cells with verification. Works with xlwings Excel MCP Server for secure Excel file manipulation in corporate environments.
Instructions
Apply Excel formula to cell. Excel formula will write to cell with verification.
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": "apply_formulaArguments",
"type": "object"
}