I am implementing a calculator in my application but I want to make the “Reset amounts” button set the quantity of that product to zero, because currently they are done manually from each item:
I want this button to set a value of 0 in several rows of my calculator table.
If you’re on a paid plan, you can use a button to trigger a webhook workflow, then loop through the related rows and set them to 0.
Using Glide API with mutations would be faster tho. It will be one shot. Webhook loops still have delay between each iteration.
You have to be on a paid plan that allows usage of Glide API.
Maybe you can use the below:
There have been several requests for people to find a way to clear a value in multiple rows. I was thinking about that and came up with a quick example of a way to handle that. Instead of trying to clear a value in an entire column, I realized we could just change one value on a parent column, load it as a single value in our sheet and then compare that parent value to a column that we set or unset for each row. It’s not about clearing an entire column, it’s about making a value in each row n…
4 Likes