# Tabs and storing data

**URL:** https://community.glideapps.com/t/tabs-and-storing-data/7289
**Category:** Ask for Help
**Created:** [April 18, 2020, 8:52am UTC](https://community.glideapps.com/t/tabs-and-storing-data/7289 "2020-04-18T08:52:59Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![geordiep](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/geordiep/32/5586_2.png) [@geordiep](https://community.glideapps.com/u/geordiep)
#### Post date: [April 18, 2020, 8:52am UTC](https://community.glideapps.com/t/tabs-and-storing-data/7289/1 "2020-04-18T08:52:59Z")

</div>

Hi is there away of storing data from one tab to another with out it been delete from master tab?

---

<div class="post-metadata">

### Author: ![Jeff\_Hager](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/jeff_hager/32/43_2.png) [@Jeff\_Hager](https://community.glideapps.com/u/Jeff_Hager)
#### Post date: [April 21, 2020, 12:47am UTC](https://community.glideapps.com/t/tabs-and-storing-data/7289/2 "2020-04-21T00:47:21Z")

</div>

Might need some more explanation of what you are trying to do. I’m not sure I understand.

---

<div class="post-metadata">

### Author: ![geordiep](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/geordiep/32/5586_2.png) [@geordiep](https://community.glideapps.com/u/geordiep)
#### Post date: [April 21, 2020, 5:33am UTC](https://community.glideapps.com/t/tabs-and-storing-data/7289/3 "2020-04-21T05:33:54Z")

</div>

In one tab I have deliverys that show a list [Screenshot\_20200421-062558\_Samsung Internet|243x500](https://community.glideapps.com/uploads/short-url/jmlaSb3xbT0aCfC9l5sl09KbdWG.jpeg) I want to be able to store in another tab. So when i delete the data out of deliverys i have a copy in another tab that I can delete as and when i need to. Cause at moment when I delete out of deliverys I cant store info in another tab iv tried and not sure if its possible

---

<div class="post-metadata">

### Author: ![Christophe\_HK](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/christophe_hk/32/4161_2.png) [@Christophe\_HK](https://community.glideapps.com/u/Christophe_HK)
#### Post date: [April 21, 2020, 6:27am UTC](https://community.glideapps.com/t/tabs-and-storing-data/7289/4 "2020-04-21T06:27:43Z")

</div>

To manage an history, you can use a script based on the onchange trigger / insertion row. You copy the new line in the history tab, in the sheet used by the app or better, to avoid consuming rows, in an external sheet.

---

<div class="post-metadata">

### Author: ![geordiep](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/geordiep/32/5586_2.png) [@geordiep](https://community.glideapps.com/u/geordiep)
#### Post date: [April 21, 2020, 6:39am UTC](https://community.glideapps.com/t/tabs-and-storing-data/7289/5 "2020-04-21T06:39:43Z")

</div>

Is there a demo on that please?.

Regards

Paul

---

<div class="post-metadata">

### Author: ![Christophe\_HK](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/christophe_hk/32/4161_2.png) [@Christophe\_HK](https://community.glideapps.com/u/Christophe_HK)
#### Post date: [April 21, 2020, 7:13am UTC](https://community.glideapps.com/t/tabs-and-storing-data/7289/6 "2020-04-21T07:13:51Z")

</div>

You can have a look at Google, search for : Google apps script onchange insertion row

---

<div class="post-metadata">

### Author: ![Jeff\_Hager](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/jeff_hager/32/43_2.png) [@Jeff\_Hager](https://community.glideapps.com/u/Jeff_Hager)
#### Post date: [April 23, 2020, 4:06am UTC](https://community.glideapps.com/t/tabs-and-storing-data/7289/7 "2020-04-23T04:06:06Z")

</div>

Rather than a history, you could just mark a delivery completed with a column filled by a checkbox, switch, or some other method. Then just filter the completed orders from view in the app.

If you’re looking for a script, here is one I use to copy a newly inserted column from one sheet to other sheets.

> [@Email registration reference](https://community.glideapps.com/t/email-registration-reference/2156/2):
>
> App:Logins would be the place to get emails. You can use a UNIQUE formula in a new sheet to build a list, but you could run into problems if have other columns in your new sheet that need to match up to the email being pulled from App:Logins. I wouldn’t trust googles UNIQUE function in this case. Things can get out of whack if you’re not careful, as the order of emails could change. Instead I would use a script that will check for unique emails and apply them to another sheet. I use the fol…
