How to Delay Trello Card Creation Until a Row in Google Sheets is Completed?

This topic was automatically generated from Slack. You can find the original thread here.

hi! i’m trying to build a very simple pipe that creates a trello card whenever someone adds a row in a google sheets. the problem is that it adds it immediatelly, so the only information thats travels to trello is the first information that i add in the row, but the other fields (whose information is in other columns in google sheets) travel to trello undefined (because they werent added yet when the card in trello was created).

is there a way to make it in a way that the trigger gets activated when the row is completed?

Take a look at $.flow.rerun: with it you can delay your workflow for X minutes and/or call rerun until all the columns of the row are completed

This doesn’t stop the trigger from firing, it will delay when the info is pushed from GSheets to Trello

Does this make sense?

Instead of triggering on new rows, you might want to trigger on updated rows instead.

And then just ignore incomplete rows.

thank you both!