Hey Make i have a probably dumb question: how can i set module to wait full execution before proceeding?
My case is quite simple
- Get Data from facebook
- Clear sheet data range on google sheet (we want last data only)
- Write new rows on the same sheet
The problem is that step 2 and 3 are executed seamlessy, Make clear 1 row and then write a row, leaving on the sheet the last only.
As a workaround, i can set as first module the clearing one and it seems to work simply because the get data need more time
- Clear sheet data range on google sheet
- Get Data
- Write Data
Is there a way to set up this scenario with more control on module execution?
Thank you!