update_table_cells_by_range_tool
Modify cell data within a specified range in a Google Sheets table using A1 notation. Provide the spreadsheet, sheet, table names, start and end cells, and 2D array of values to update.
Instructions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cell_values | Yes | 2D array of values to update (rows x columns) Must match the range dimensions based on start_cell and end_cell. EXAMPLE: For range 'A1:C2', you need 2 rows x 3 columns: [ ['Value1', 'Value2', 'Value3'], ['Value4', 'Value5', 'Value6'] ] | |
end_cell | Yes | Ending cell reference (e.g., 'C5', 'D10') | |
sheet_name | Yes | The name of the sheet containing the table | |
spreadsheet_name | Yes | The name of the Google Spreadsheet | |
start_cell | Yes | Starting cell reference (e.g., 'A1', 'B2') | |
table_name | Yes | Name of the table to update |