Write to Google Sheets
block automates the process of adding data to a Google Sheets file. It supports writing data to both new and existing Google Sheets, providing various options for specifying where and how the data should be added.
I/O | Feature | Type | Simple Explanation |
---|---|---|---|
input | data | any[] | The data that you want to write into the Google Sheet. |
input | use_existing_google_sheet | boolean | If true, writes data into an existing worksheet; if false, creates a new worksheet. |
input | sheet_link_or_id | string | The link or ID of the pre-existing sheet in Google Drive (only applicable when using an existing sheet). |
input | sheet_name | string | The specific name of the sheet within your spreadsheet where the data will be recorded. |
input | writer_mode | string | Determines how the entries are inserted: can be set as Add New Row , Add New Column , Add to Specified Row , or Add to Specified Column . |
input | row_index | number | The index of the row when adding data to a specified row, starting from 0. Only used when writer_mode is set to “Specified Row” |
input | column_index | number | The index of the column when adding data to a specified column, starting from 0. Only used when writer_mode is set to “Specified Column” |
output | sheet_link | string | The link to the Google Sheet where the data was written. |