Cara menggunakan append in google sheets

  • HTTP request
  • Path parameters
  • Query parameters
  • Request body
  • Response body
    • JSON representation
  • Authorization Scopes
  • InsertDataOption
  • Examples
  • Try it!

Appends values to a spreadsheet. The input range is used to search for existing data and find a "table" within that range. Values will be appended to the next row of the table, starting with the first column of the table. See the guide and sample code for specific details of how tables are detected and data is appended.

The caller must specify the spreadsheet ID, range, and a valueInputOption. The valueInputOption only controls how the input data will be added to the sheet (column-wise or row-wise), it does not influence what cell the data starts being written to.

HTTP request

POST https://sheets.googleapis.com/v4/spreadsheets/{spreadsheetId}/values/{range}:append

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
spreadsheetId

string

The ID of the spreadsheet to update.

range

string

The A1 notation of a range to search for a logical table of data. Values are appended after the last row of the table.

Query parameters

Parameters
valueInputOption

enum (ValueInputOption)

How the input data should be interpreted.

insertDataOption

enum (InsertDataOption)

How the input data should be inserted.

includeValuesInResponse

boolean

Determines if the update response should include the values of the cells that were appended. By default, responses do not include the updated values.

responseValueRenderOption

enum (ValueRenderOption)

Determines how values in the response should be rendered. The default render option is FORMATTED_VALUE.

responseDateTimeRenderOption

enum (DateTimeRenderOption)

Determines how dates, times, and durations in the response should be rendered. This is ignored if responseValueRenderOption is FORMATTED_VALUE. The default dateTime render option is SERIAL_NUMBER.

Request body

The request body contains an instance of ValueRange.

Response body

If successful, the response body contains data with the following structure:

The response when updating a range of values in a spreadsheet.

JSON representation
{
  "spreadsheetId": string,
  "tableRange": string,
  "updates": {
    object (UpdateValuesResponse)
  }
}
Fields
spreadsheetId

string

The spreadsheet the updates were applied to.

tableRange

string

The range (in A1 notation) of the table that values are being appended to (before the values were appended). Empty if no table was found.

updates

object (UpdateValuesResponse)

Information about the updates that were applied.

Requires one of the following OAuth scopes:

  • https://www.googleapis.com/auth/drive
  • https://www.googleapis.com/auth/drive.file
  • https://www.googleapis.com/auth/spreadsheets

For more information, see the OAuth 2.0 Overview.

InsertDataOption

Determines how existing data is changed when new data is input.

Enums
OVERWRITE The new data overwrites existing data in the areas it is written. (Note: adding data to the end of the sheet will still insert new rows or columns so the data can be written.)
INSERT_ROWS Rows are inserted for the new data.

Cara menggunakan append in google sheets

If you keep data in separate Google Sheets, copy a range of data from one spreadsheet to another with the IMPORTRANGE function.

For example, you may track quarterly sales data for a product in a different spreadsheet for each region. To combine all that quarterly sales data, copy the data from each region's spreadsheet into a single spreadsheet using IMPORTRANGE.

Use the IMPORTRANGE function

  1. In Sheets, open a spreadsheet.
  2. In an empty cell, enter =IMPORTRANGE.
  3. In parenthesis, add the following specifications in quotation marks and separated by a comma*:
    • The URL of the spreadsheet in Sheets.
    • The sheet name (optional) and the range of cells to import.

    *Note: If you are in a Spanish-speaking country, use the semicolon as a separator instead of the comma.

  4. Press Enter.
  5. Click Allow access to connect the 2 spreadsheets.

For example:

To import cells A1 through C10 from sheet 1 of the abcd123abcd123 spreadsheet, you enter: =IMPORTRANGE("https://docs.google.com/spreadsheets/d/abcd123abcd123", "sheet1!A1:C10")

Was this helpful?

How can we improve it?