Google Super

GOOGLESUPER_CREATE_SPREADSHEET_COLUMN

Creates a new column in a Google Spreadsheet, requiring a valid `spreadsheet_id` and an existing `sheet_id`; an out-of-bounds `insert_index` may append/prepend the column.

Remote googlesuper

Other tools also called GOOGLESUPER_CREATE_SPREADSHEET_COLUMN? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "sheet_id": {
      "type": "integer",
      "title": "Sheet Id",
      "examples": [
        "0",
        "123456789"
      ],
      "description": "The numeric identifier of the specific sheet (tab) within the spreadsheet where the column will be added."
    },
    "insert_index": {
      "type": "integer",
      "title": "Insert Index",
      "default": 0,
      "examples": [
        "0",
        "1",
        "5"
      ],
      "description": "The 0-based index at which the new column will be inserted. For example, an index of 0 inserts the column before the current first column (A), and an index of 1 inserts it between the current columns A and B."
    },
    "spreadsheet_id": {
      "type": "string",
      "title": "Spreadsheet Id",
      "examples": [
        "1qZysYd_N2cZ9gkZ8sR7M0rP8sX5vW2bA9gV3rF1cE0"
      ],
      "description": "The unique identifier of the Google Spreadsheet where the column will be created."
    },
    "inherit_from_before": {
      "type": "boolean",
      "title": "Inherit From Before",
      "default": false,
      "examples": [
        true,
        false
      ],
      "description": "If true, the new column inherits properties (e.g., formatting, width) from the column immediately to its left (the preceding column). If false (default), it inherits from the column immediately to its right (the succeeding column). This is ignored if there is no respective preceding or succeeding column."
    }
  }
}