excel_create_named_range
Define named ranges in Excel workbooks to simplify financial formulas, improve formula readability, and streamline financial modeling workflows.
Instructions
Create a named range in the workbook
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | ||
range | Yes | ||
worksheetName | No |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"type": "string"
},
"range": {
"type": "string"
},
"worksheetName": {
"type": "string"
}
},
"required": [
"name",
"range"
],
"type": "object"
}