update_sheet_tab
Update a spreadsheet (sheet, excel, workbook) tab: merge cells, rename, change color, or resize the grid. Set a cell value to null to clear it.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | New tab name | |
| rows | No | New row count | |
| cells | No | Cells to update in A1 notation (null clears a cell). Each cell is an object with: value (string|number), and optional format: { bold, italic, underline (booleans), color (text hex e.g. "#FF0000"), bgColor (background hex), fontSize (number), fontFamily (string), align ("left"|"center"|"right"), numberFormat ("currency"|"percentage"|"number"|"date"), decimals (number), currencySymbol (string) }. Example: {"A1": {"value": "Revenue", "format": {"bold": true, "bgColor": "#1B3A5C", "color": "#FFFFFF"}}} | |
| color | No | Tab color | |
| tab_id | Yes | Tab ID | |
| columns | No | New column count | |
| sheet_id | Yes | Sheet (workbook) ID |