Description of the Issue
Hello n8n Community,
I am experiencing an issue where my Google Sheets Append Node is not successfully updating my spreadsheet. I have configured the node to append new data rows to an existing Google Sheet, but no changes are being made despite successful workflow execution.
My Setup
- Operating System: Ubuntu 20.04 LTS
- n8n Version: 0.219.1
- Google Sheets Node Version: Latest (as of March 29, 2025)
- Authentication Method: OAuth2 (Google Sign-In)
- Spreadsheet Permission Level: Full Editing Access
Workflow Configuration
- Code Node (Generating Data)
- Outputs a JSON object with a
data
key containing an array of arrays (rows of data). - Example output:
json
CopyEdit
{
"data": [
[
"ERIC DAVID",
"435 Sunset Blvd, Malibu, CA",
"7/15/25",
"15th July 2025",
"birthday party",
"50",
"$75",
"5:30 PM",
"(310) 555-7823",
"[email protected]",
"Mediterranean-inspired",
"buffet",
"vegetarian, nuts",
"bartending",
"ERIC DAVID - Event Proposal (15th July 2025)"
]
]
}
- Google Sheets Append Node Configuration
- Action:
Append
- Spreadsheet ID: Provided from a previous Google Drive Copy Node (
{{ $('Google Drive Copy Node').item.json['spreadsheetId'] }}
) - Sheet Name:
Sheet1
- Range: (Left Blank)
- Value Input Mode:
USER_ENTERED
- Data Property Name:
data
Troubleshooting Steps Attempted
- Verified OAuth2 Authentication:
- Successfully authenticated via Google Sign-In with full permissions to edit Sheets.
- Checked Spreadsheet ID & Sheet Name:
- Confirmed the Spreadsheet ID is correctly passed to the Google Sheets Append Node.
- Confirmed the Sheet Name (
Sheet1
) is accurately specified.
- Verified Data Property Name:
- The
data
key is correctly being generated by my Code Node. - Output format is a valid array of arrays.
- Tested with Sample Data:
- Attempted to append simple static data, but no changes are made to the spreadsheet.
- Checked Google Sheets Permissions:
- Confirmed that the Google Account used for authentication has full editing permissions on the targeted spreadsheet.
- Monitored Logs for Errors:
- No errors are being thrown; the workflow completes successfully but does not append data.
Expected Result
The Google Sheets Append Node should append the provided data to the next available row in the specified Google Sheet.
Actual Result
The workflow completes without errors, but the spreadsheet is not updated. No new rows are added.
Request for Assistance
I would appreciate any guidance on how to resolve this issue. If additional logs or screenshots are required, please let me know.
Thank you in advance for your help!