### Spreadsheet ID Example Source: https://developers.google.com/sheets/api The unique identifier for a spreadsheet can be found in its URL. ```url https://docs.google.com/spreadsheets/d/SPREADSHEET_ID/edit?gid=SHEET_ID#gid=SHEET_ID ``` -------------------------------- ### R1C1 Notation Examples Source: https://developers.google.com/sheets/api Defines cells or ranges using sheet names and row/column numbers. Useful for referencing cells relative to a given position. ```text Sheet1!R1C1:R2C2 ``` ```text R1C1:R2C2 ``` ```text Sheet1!R[3]C[1] ``` -------------------------------- ### A1 Notation Examples Source: https://developers.google.com/sheets/api Defines cells or ranges using sheet names and cell coordinates. Single quotes are required for sheet names with spaces or special characters. ```text Sheet1!A1:B2 ``` ```text Sheet1!A:A ``` ```text Sheet1!1:2 ``` ```text Sheet1!A5:A ``` ```text A1:B2 ``` ```text Sheet1 ``` ```text 'Jon's_Data'!A1:D5 ``` ```text 'My Custom Sheet'!A:A ``` ```text 'My Custom Sheet' ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.