Hi, I’m using Google Sheets to store data row by row, and I want to run a series of automations based on each row.
For example, if I have two rows in the sheet, how can I process them individually, so each row triggers a separate execution of the workflow, instead of combining them into a single JSON array with two items?
I understand that when multiple items exist, downstream nodes will run multiple times. However, at the end of the workflow, I need to reference the original Google Sheets row data that triggered each execution. Right now, it seems to only reference the first row, even when processing the second item.
How can I ensure each execution correctly references its respective row throughout the workflow?
This step is supposed to POST each row’s data to its corresponding destination action ID (from the same row in the Google Sheet).
For example, the first row should post to HOY69SyTWw2JL6Vca9fotw
The second row should post to HCz4CkzCBqLI2Utki6XJUg
However, right now both items are being posted using the Destination action ID from the first row only (HOY69SyTWw2JL6Vca9fotw), even when processing the second row’s data.