Describe the problem/error/question
I would like the final node to recognise the data from an upstream Http request node. I have set the expressions in the form
{{ $(‘HTTP Request (Upstream)’).item.json.xxxxxxx }}
But my final node only picks up the data from the immediately preceeding node - google move file - which is incorrect data for my googlesheet.
What is the error message (if any)?
No error message, just unable to recognise and acceot the correct data from an upstream node.
Please share your workflow
Share the output returned by the last node
Actual result, not wanted, this data comes from the node that immediately preceeds it, the google move file node:
[
{
"kind": "drive#file",
"id": "1wRc_x3rgypnBOBO9Y0RdA39jXkQNHIojdlogDwakXfg",
"name": "n8n-test-worksheet-2025-09-16T20:05:01.705+01:00",
"mimeType": "application/vnd.google-apps.spreadsheet",
"teamDriveId": "0APkroY2zQDr1Uk9PVA",
"driveId": "0APkroY2zQDr1Uk9PVA"
}
]
Required result, from upstream HTTP Request node:
[
{
"orderID": 1,
"customerID": 8,
"employeeName": "Mario",
"orderPrice": 150.32,
"orderStatus": "processing"
},
{
"orderID": 2,
"customerID": 5,
"employeeName": "Mario",
"orderPrice": 161.1,
"orderStatus": "booked"
},
... x 30 rows total
]
If i hit the refresh icon bext to “values to send” the node picks up the google move file attributes automatically (incorrect for my needs):
Information on your n8n setup
- n8n version: 1.110.1
- Database (default: SQLite): default
- n8n EXECUTIONS_PROCESS setting (default: own, main): default
- Running n8n via (Docker, npm, n8n cloud, desktop app): n8n cloud
- Operating system: Mac OS




