The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"nodes": [
{
"name": "Read Sheet",
"type": "n8n-nodes-base.googleSheets",
"position": [
700,
300
],
"parameters": {
"range": "Data!A:G",
"rawData": true
},
"typeVersion": 1
},
{
"name": "Cron",
"type": "n8n-nodes-base.cron",
"position": [
500,
300
],
"parameters": {
"triggerTimes": {
"item": [
{
"mode": "custom",
"cronExpression": "0 */2 * * * *"
}
]
}
},
"typeVersion": 1
},
{
"name": "Write Sheet 2",
"type": "n8n-nodes-base.googleSheets",
"position": [
900,
400
],
"parameters": {
"range": "={{$node[\"Read Sheet\"].parameter[\"range\"]}}",
"rawData": true,
"operation": "update"
},
"typeVersion": 1
},
{
"name": "Write Sheet 1",
"type": "n8n-nodes-base.googleSheets",
"position": [
900,
200
],
"parameters": {
"range": "={{$node[\"Read Sheet\"].parameter[\"range\"]}}",
"rawData": true,
"operation": "update"
},
"typeVersion": 1
}
],
"connections": {
"Cron": {
"main": [
[
{
"node": "Read Sheet",
"type": "main",
"index": 0
}
]
]
},
"Read Sheet": {
"main": [
[
{
"node": "Write Sheet 2",
"type": "main",
"index": 0
},
{
"node": "Write Sheet 1",
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Sync Data Between Multiple Google Spreadsheets. Uses googleSheets. Scheduled trigger; 4 nodes.
Source: https://github.com/Zie619/n8n-workflows — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
Synchronize your Google Sheets with Postgres. Uses googleSheets, postgres, stopAndError. Scheduled trigger; 11 nodes.
Synchronize Your Google Sheets With Postgres. Uses scheduleTrigger, compareDatasets, splitOut, googleSheets. Scheduled trigger; 10 nodes.
Synchronize your Google Sheets with Postgres. Uses scheduleTrigger, compareDatasets, splitOut, googleSheets. Scheduled trigger; 10 nodes.
MHS Updates credential sync. Uses start, googleSheets, httpRequest. Scheduled trigger; 4 nodes.