G-sheets: How to trigger a scenario after new row is created?

Howdy @Healing_Touch Welcome to the :make: Make Community!

:information_source:Trigger :make: make Scenario on every sheet update with this sheets addon
To have a scenario trigger by a change in a sheet.
The easiest way to do this is to install the make/integromat add-on for google sheets.
Alternatively if a script is updating the sheet, use

UrlFetchApp.fetch("https://hook.make.com/xxx...xxx");

at the end of your script, to trigger the scenario. you can even pass the rows that were updated in the query string

Warning though, its really only suitable if your sheet is filling automatically with data to use the “trigger make scenario on sheet change” cause each little change will trigger it.


If you are manually adding data to the sheet for whatever reason

:computer_mouse:Trigger :make: make Scenario with Button in Google Sheets
id suggest you use a button instead to either add the row, or to trigger the scenario when the data is added.

Hope This Helps!