Hi everyone,
I’m working on a Google Sheets → Make integration using the Watch Changes module and custom Apps Script.
The automation works. Make receives the webhook but there’s a major problem:
When I enter data into two columns (Name in A, Phone in B), only the cell I edited last is included in the webhook payload.
-
If I enter the name first, Make only gets the name.
-
If I enter the phone number first, Make only gets the phone.
This means I’m not getting both values in the same webhook call, which breaks my downstream SMS automation (which requires both Name and Phone).
-
I’m using the onEdit(e) Apps Script trigger as instructed.
-
The webhook URL is correctly set.
-
I’ve added a check to wait until both A and B are filled before sending data, but due to Google’s cell-based edit trigger, it still fires twice and only sends the changed cell’s data
What I Need:
How do I send the entire row’s data (columns A & B) together in one webhook, only once both fields are filled?
Any clean workaround or alternative approach from Make’s side would be hugely helpful. I’m currently testing the platform and would love to upgrade if I can solve this issue.
Thanks in advance!
PS: I have used this Google Sheets - Apps Documentation documentation for guidance.