# Set a numeric value across multiple rows

**URL:** https://community.glideapps.com/t/set-a-numeric-value-across-multiple-rows/80554
**Category:** Ask for Help
**Created:** [March 6, 2025, 9:09pm UTC](https://community.glideapps.com/t/set-a-numeric-value-across-multiple-rows/80554 "2025-03-06T21:09:35Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![FabriMC](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/fabrimc/32/85864_2.png) [@FabriMC](https://community.glideapps.com/u/FabriMC)
#### Post date: [March 6, 2025, 9:09pm UTC](https://community.glideapps.com/t/set-a-numeric-value-across-multiple-rows/80554/1 "2025-03-06T21:09:35Z")

</div>

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:

 ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/2/2/229e6bd2fa2478dfe0c3652646f95ab41a09b6fb.png)  
I want this button to set a value of 0 in several rows of my calculator table.  
 ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/9/3/9395420c1970610a161991530dcd20bee1bc83e3.png)

---

<div class="post-metadata">

### Author: ![MaximeBaker](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/maximebaker/32/80877_2.png) [@MaximeBaker](https://community.glideapps.com/u/MaximeBaker)
#### Post date: [March 6, 2025, 9:33pm UTC](https://community.glideapps.com/t/set-a-numeric-value-across-multiple-rows/80554/2 "2025-03-06T21:33:43Z")

</div>

You will like this:

> [@Bulk Edit Column Values Across Multiple Rows in Glide with User-Specific Column Compatibility](https://community.glideapps.com/t/bulk-edit-column-values-across-multiple-rows-in-glide-with-user-specific-column-compatibility/77644):
>
> I implemented a feature that allows you to edit values across an entire column, similar to the solution discussed [here](https://community.glideapps.com/t/bulk-clear-edit-restore-and-delete-columns-plus-undo-action/59546), but using the official Glide API in a compliant manner. For this example, I configured a choice component that enables you to select the rows you wish to edit. There’s a button that allows you to select all rows or clear your selections. This flexibility lets you choose whichever rows you need to update. Once you’ve made your selections, you can set a new value for a specific …

---

<div class="post-metadata">

### Author: ![ThinhDinh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/thinhdinh/32/49_2.png) [@ThinhDinh](https://community.glideapps.com/u/ThinhDinh)
#### Post date: [March 7, 2025, 12:23am UTC](https://community.glideapps.com/t/set-a-numeric-value-across-multiple-rows/80554/3 "2025-03-07T00:23:21Z")

</div>

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.

---

<div class="post-metadata">

### Author: ![MaximeBaker](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/maximebaker/32/80877_2.png) [@MaximeBaker](https://community.glideapps.com/u/MaximeBaker)
#### Post date: [March 7, 2025, 1:39am UTC](https://community.glideapps.com/t/set-a-numeric-value-across-multiple-rows/80554/4 "2025-03-07T01:39:42Z")

</div>

Using Glide API with mutations would be faster tho. It will be one shot. Webhook loops still have delay between each iteration.

---

<div class="post-metadata">

### Author: ![FabriMC](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/fabrimc/32/85864_2.png) [@FabriMC](https://community.glideapps.com/u/FabriMC)
#### Post date: [April 11, 2025, 6:29pm UTC](https://community.glideapps.com/t/set-a-numeric-value-across-multiple-rows/80554/5 "2025-04-11T18:29:02Z")

</div>

Can it be done for free?

---

<div class="post-metadata">

### Author: ![ThinhDinh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/thinhdinh/32/49_2.png) [@ThinhDinh](https://community.glideapps.com/u/ThinhDinh)
#### Post date: [April 11, 2025, 11:50pm UTC](https://community.glideapps.com/t/set-a-numeric-value-across-multiple-rows/80554/6 "2025-04-11T23:50:10Z")

</div>

You have to be on a paid plan that allows usage of Glide API.

---

<div class="post-metadata">

### Author: ![Darren\_Murphy](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/darren_murphy/32/47326_2.png) [@Darren\_Murphy](https://community.glideapps.com/u/Darren_Murphy)
#### Post date: [April 12, 2025, 12:21am UTC](https://community.glideapps.com/t/set-a-numeric-value-across-multiple-rows/80554/7 "2025-04-12T00:21:10Z")

</div>

Maybe you can use the below:

> [@Reset Multiple Rows At Once](https://community.glideapps.com/t/reset-multiple-rows-at-once/22211):
>
> 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…
