excel_write_worksheet
Write data arrays to Excel worksheets for financial calculations, investment analysis, and automated reporting with precise cell positioning.
Instructions
Write data to a worksheet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | ||
startCol | No | ||
startRow | No | ||
worksheetName | Yes |
Input Schema (JSON Schema)
{
"properties": {
"data": {
"items": {
"type": "array"
},
"type": "array"
},
"startCol": {
"default": 1,
"type": "number"
},
"startRow": {
"default": 1,
"type": "number"
},
"worksheetName": {
"type": "string"
}
},
"required": [
"worksheetName",
"data"
],
"type": "object"
}