# Lots of data to manage

**URL:** https://community.glideapps.com/t/lots-of-data-to-manage/35620
**Category:** Ask for Help
**Created:** [December 7, 2021, 11:35am UTC](https://community.glideapps.com/t/lots-of-data-to-manage/35620 "2021-12-07T11:35:32Z")
**Posts on this page:** 1
**Showing post:** 6

<div class="post-metadata">

### Author: ![ShantanuIyengar](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/shantanuiyengar/32/35546_2.png) [@ShantanuIyengar](https://community.glideapps.com/u/ShantanuIyengar)
#### Post date: [December 7, 2021, 1:39pm UTC](https://community.glideapps.com/t/lots-of-data-to-manage/35620/6 "2021-12-07T13:39:07Z")

</div>

You can try to move rows which aren’t being used to other sheet.

> [@Scripts, scripts, scripts!](https://community.glideapps.com/t/scripts-scripts-scripts/18965/48):
>
> A script to move rows from one sheet to another based on certain conditions. I run this trigger every 24 hours to get rid of past data and save it as a backup so my apps are always easier and quicker to load. function moveRows() { var ss = SpreadsheetApp.getActive(); var source = ss.getSheetByName('Sheet1'); var val = source.getDataRange().getValues(); var PDate = new Date(new Date().setHours(0,0,0,0)) for (var row = val.length - 1; row \>= 0; --row) { Logger.log("C…

---

_[View the full topic](https://community.glideapps.com/t/lots-of-data-to-manage/35620)._
