# Manually deleting multiple rows Glide Table

**URL:** https://community.glideapps.com/t/manually-deleting-multiple-rows-glide-table/43810
**Category:** Ask for Help
**Created:** [July 2, 2022, 4:52pm UTC](https://community.glideapps.com/t/manually-deleting-multiple-rows-glide-table/43810 "2022-07-02T16:52:23Z")
**Posts on this page:** 20
**Page:** 1

<div class="post-metadata">

### Author: ![rayo](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/rayo/32/91372_2.png) [@rayo](https://community.glideapps.com/u/rayo)
#### Post date: [July 2, 2022, 4:52pm UTC](https://community.glideapps.com/t/manually-deleting-multiple-rows-glide-table/43810/1 "2022-07-02T16:52:24Z")

</div>

I’m trying to manually delete rows from the Glide Table however it seems that even if i select multiple rows and click delete, only one row is deleted at a time?

any idea whats the best way to delete multiple rows? i have around 4000 rows i want to delete.

---

<div class="post-metadata">

### Author: ![gvalero](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/gvalero/32/1037_2.png) [@gvalero](https://community.glideapps.com/u/gvalero)
#### Post date: [July 2, 2022, 5:25pm UTC](https://community.glideapps.com/t/manually-deleting-multiple-rows-glide-table/43810/2 "2022-07-02T17:25:11Z")

</div>

Hola!

What OS are you using: Windows?

Do you have the same problem on all your APPs?

---

<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: [July 2, 2022, 5:35pm UTC](https://community.glideapps.com/t/manually-deleting-multiple-rows-glide-table/43810/3 "2022-07-02T17:35:49Z")

</div>

Yeah, this is a recent regression. Glide team is aware of it and I believe a fix is on the way.

In the meantime, one thing I found is that you can select multiple rows and just keep hitting the delete key and get rid of them one by one. (Yeah I know that’s not a lot of help if you have 4000 rows to remove).

---

<div class="post-metadata">

### Author: ![rayo](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/rayo/32/91372_2.png) [@rayo](https://community.glideapps.com/u/rayo)
#### Post date: [July 3, 2022, 6:37am UTC](https://community.glideapps.com/t/manually-deleting-multiple-rows-glide-table/43810/4 "2022-07-03T06:37:21Z")

</div>

Hola !  
Windows  
I haven’t needed such a mass delete before, to be honest i never realized this problem before… i used to select 2-3 rows and click delete (thought it used to work !)

---

<div class="post-metadata">

### Author: ![rayo](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/rayo/32/91372_2.png) [@rayo](https://community.glideapps.com/u/rayo)
#### Post date: [July 3, 2022, 6:39am UTC](https://community.glideapps.com/t/manually-deleting-multiple-rows-glide-table/43810/5 "2022-07-03T06:39:34Z")

</div>

Thanks Darren, i’ve been doing so since your message, nearly done 😂

this is a log table actually, i set it up to keep track of all actions on the app and all of a sudden it reached 1000s of rows. I deleted already plenty but i wake up in the morning and its even more 🤦‍♂️

I’m thinking of deleting all add row actions to this table first. I guess then it won’t be counted to my row count as i never call anything from this table. I only see it in the editor.

---

<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: [July 3, 2022, 6:58am UTC](https://community.glideapps.com/t/manually-deleting-multiple-rows-glide-table/43810/6 "2022-07-03T06:58:08Z")

</div>

> [@rayo](#):
>
> I’m thinking of deleting all add row actions to this table first. I guess then it won’t be counted to my row count as i never call anything from this table. I only see it in the editor.

Yeah, if it’s not referenced anywhere then the rows shouldn’t count.

If you’d like to turn it into a sort of FIFO log, there is a trick that can be used to automatically delete the oldest rows. All you need to do is use a Single Value or a Rollup to identify the oldest row in the table, then build a Single Relation to that row. Then you can include a Delete Row step in your Add Row sequence that deletes that oldest row. The end result will be that you’ll have a rotating log with a fixed number of rows.

---

<div class="post-metadata">

### Author: ![rayo](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/rayo/32/91372_2.png) [@rayo](https://community.glideapps.com/u/rayo)
#### Post date: [July 3, 2022, 7:01am UTC](https://community.glideapps.com/t/manually-deleting-multiple-rows-glide-table/43810/7 "2022-07-03T07:01:41Z")

</div>

Yes I have that in other places in the app but the issue is I need to clear these 4000 rows and maybe i could set that up once the table is down to 100-200 rows.

By the way i just finished manually deleting all rows (kept my finger on the delete button)… closed app and opened again to find the count still at 2900 … so i guess even that doesn’t work unless you give time for Glide to delete before you click again.

---

<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: [July 3, 2022, 7:06am UTC](https://community.glideapps.com/t/manually-deleting-multiple-rows-glide-table/43810/8 "2022-07-03T07:06:48Z")

</div>

> [@rayo](#):
>
> By the way i just finished manually deleting all rows (kept my finger on the delete button)… closed app and opened again to find the count still at 2900 … so i guess even that doesn’t work unless you give time for Glide to delete before you click again.

Yes, apparently mass deleting rows via the data editor doesn’t play well with the Glide back end.

---

<div class="post-metadata">

### Author: ![rayo](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/rayo/32/91372_2.png) [@rayo](https://community.glideapps.com/u/rayo)
#### Post date: [July 6, 2022, 6:13am UTC](https://community.glideapps.com/t/manually-deleting-multiple-rows-glide-table/43810/9 "2022-07-06T06:13:58Z")

</div>

Seems like mass deleting multiple rows is functioning again in the glide editor.  
However, i would advise anyone using it to avoid any further actions in Glide after deleting and to reload app to confirm. It doesn’t work well for a big number of rows. I tried a couple thousand rows at once and although they disappeared from the editor. On reload, most of them appeared back again. But still its working, unlike before where it was deleting 1 row (the first selected) only.

---

<div class="post-metadata">

### Author: ![Krivo](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/krivo/32/5363_2.png) [@Krivo](https://community.glideapps.com/u/Krivo)
#### Post date: [July 6, 2022, 8:01am UTC](https://community.glideapps.com/t/manually-deleting-multiple-rows-glide-table/43810/10 "2022-07-06T08:01:21Z")

</div>

@rayo you could have a look on this post. It also describes deletingv

> [@robot Importing data to Glide by use of robot (RPA)](https://community.glideapps.com/t/importing-data-to-glide-by-use-of-robot-rpa/29008):
>
> Challenge 1 In this moment of time it is not possible to import data (or paste chunks of data) into Glide. @Manu.n has shown a way to import a row at a time from Google sheets to Glide tables which is quite handy if you have not to much data to import. But if you have hundreds or thousands of rows this approach is not the way to go. 
> 
> > **Manu.n's approach - great for a smaller number of rows**
> >
> > \<a href="https://community.glideapps.com/t/import-data-from-excel-sheets-into-glide-table/20184/…

---

<div class="post-metadata">

### Author: ![Martinus\_Goh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/martinus_goh/32/53576_2.png) [@Martinus\_Goh](https://community.glideapps.com/u/Martinus_Goh)
#### Post date: [May 25, 2023, 7:25am UTC](https://community.glideapps.com/t/manually-deleting-multiple-rows-glide-table/43810/11 "2023-05-25T07:25:22Z")

</div>

hello @Darren_Murphy , how about mass editing ?  
is it possible ?  
if i want to create a new basic column, but want to fill all of the existing record the same value at once

---

<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: [May 25, 2023, 7:29am UTC](https://community.glideapps.com/t/manually-deleting-multiple-rows-glide-table/43810/12 "2023-05-25T07:29:07Z")

</div>

I think copy/paste would be the easiest way to do that.

But… if you want the same value in every row, why not use a template column instead?

---

<div class="post-metadata">

### Author: ![Uzo](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/uzo/32/22639_2.png) [@Uzo](https://community.glideapps.com/u/Uzo)
#### Post date: [May 25, 2023, 7:31am UTC](https://community.glideapps.com/t/manually-deleting-multiple-rows-glide-table/43810/13 "2023-05-25T07:31:15Z")

</div>

Try this one:

> **[Bulk Editing and Restoring](https://bulk-editing.glide.page)**
>
> Bulk edit, clear or restore Glide columns.

😜

---

<div class="post-metadata">

### Author: ![Martinus\_Goh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/martinus_goh/32/53576_2.png) [@Martinus\_Goh](https://community.glideapps.com/u/Martinus_Goh)
#### Post date: [May 25, 2023, 7:49am UTC](https://community.glideapps.com/t/manually-deleting-multiple-rows-glide-table/43810/14 "2023-05-25T07:49:09Z")

</div>

tried, when i block all the cells and paste, it only paste the first row cells, not all of them

i dunno why

---

<div class="post-metadata">

### Author: ![Martinus\_Goh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/martinus_goh/32/53576_2.png) [@Martinus\_Goh](https://community.glideapps.com/u/Martinus_Goh)
#### Post date: [May 25, 2023, 7:53am UTC](https://community.glideapps.com/t/manually-deleting-multiple-rows-glide-table/43810/15 "2023-05-25T07:53:34Z")

</div>

impressive and how did you manage that ?

but i notice that the first row didnt get to edited ??

and when i enter the item screen, it didnt change?

---

<div class="post-metadata">

### Author: ![Uzo](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/uzo/32/22639_2.png) [@Uzo](https://community.glideapps.com/u/Uzo)
#### Post date: [May 25, 2023, 7:56am UTC](https://community.glideapps.com/t/manually-deleting-multiple-rows-glide-table/43810/16 "2023-05-25T07:56:52Z")

</div>

did you have any filter on?

---

<div class="post-metadata">

### Author: ![Martinus\_Goh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/martinus_goh/32/53576_2.png) [@Martinus\_Goh](https://community.glideapps.com/u/Martinus_Goh)
#### Post date: [May 25, 2023, 7:59am UTC](https://community.glideapps.com/t/manually-deleting-multiple-rows-glide-table/43810/17 "2023-05-25T07:59:34Z")

</div>

nope, the first row goes blank

and after i bulk edit the second column, it shows but the original text, not the edited one

 ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/a/c/ac7954546fa37ec4402869d7cab032f52e32d8a6.png)

---

<div class="post-metadata">

### Author: ![Uzo](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/uzo/32/22639_2.png) [@Uzo](https://community.glideapps.com/u/Uzo)
#### Post date: [May 25, 2023, 8:01am UTC](https://community.glideapps.com/t/manually-deleting-multiple-rows-glide-table/43810/18 "2023-05-25T08:01:58Z")

</div>

im gonna check it out… i did not look at this app for a long time… and glide made many changes since then

---

<div class="post-metadata">

### Author: ![Uzo](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/uzo/32/22639_2.png) [@Uzo](https://community.glideapps.com/u/Uzo)
#### Post date: [May 25, 2023, 8:34am UTC](https://community.glideapps.com/t/manually-deleting-multiple-rows-glide-table/43810/19 "2023-05-25T08:34:38Z")

</div>

It is fixed… thank you for pointing it out 😍

---

<div class="post-metadata">

### Author: ![Martinus\_Goh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/martinus_goh/32/53576_2.png) [@Martinus\_Goh](https://community.glideapps.com/u/Martinus_Goh)
#### Post date: [May 25, 2023, 8:36am UTC](https://community.glideapps.com/t/manually-deleting-multiple-rows-glide-table/43810/20 "2023-05-25T08:36:34Z")

</div>

cool

but im still wondering why the changes doesnt effect when i go inside the item screen ?

[Next page](https://community.glideapps.com/t/manually-deleting-multiple-rows-glide-table/43810.md?page=2)
