Auto delete

Am making an app where the user have to keep on changing the items they have on the list and details daily. So an auto delete would be much better for me so as not to keep on editing instead.
Could it be possible to auto delete items after a certain period of time.

you could have a column that has a date… if that date doesn’t match today - then don’t display the entries.

Are you using Google Sheets as the database? @Denis1

Am using glide tables

I was thinking of the same but the number of rows meant to be made by end user is massively big. So that might not work for my case.

You could set it up so that the oldest item is deleted every time a new item is added.

  • Use a rollup column to find the item with the oldest date
  • Use that value to create a single relation to the oldest item
  • Use an onSubmit action to delete that item when a new item is added
5 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.