โ06-12-2024 05:06 PM
Hi,
I have the following workflow:
I'm struggling with 2 things:
Thanks for any advice!
Solved! Go to Solution.
โ06-14-2024 03:49 PM
I ask because your second recipe needs to be triggered by an update to a Google sheet, which can only be configured by identifying the sheet by name or ID. If you're making a new sheet every time, then it's going to be really difficult to listen to an update on every individual sheet you create. (I'm not even sure if it can be done natively.)
There's also a lot of connective data needed to bridge the two recipes asynchronously. In short, Recipe 1 needs to leave an ID in the gsheet, and recipe 2 needs to use that ID to retrieve data from elsewhere.
Here's a more detailed breakdown:
Hope this helps!
โ06-12-2024 08:01 PM
I have a question: Is a new Google sheet created for user each request, or is the same Google sheet for each request (the user adds data to a specific row in the sheet per request)?
โ06-14-2024 03:16 PM
It would ideally be a new sheet for each request, but if need be it can be the same Google sheet. Why do you ask?
โ06-14-2024 03:49 PM
I ask because your second recipe needs to be triggered by an update to a Google sheet, which can only be configured by identifying the sheet by name or ID. If you're making a new sheet every time, then it's going to be really difficult to listen to an update on every individual sheet you create. (I'm not even sure if it can be done natively.)
There's also a lot of connective data needed to bridge the two recipes asynchronously. In short, Recipe 1 needs to leave an ID in the gsheet, and recipe 2 needs to use that ID to retrieve data from elsewhere.
Here's a more detailed breakdown:
Hope this helps!