Order by id - airtable base

Hi.
I have a table of purchases, in a AirTable base.
I need to keep this table order by created time (or Id), old at the top and new at the end.
For some reason, from time to time, the order of the rows is changed and I don’t know how to keep it in the same order.
It causes bugs in the app.

You could apply a sort to your lists/ collections inside Glide. To grab the latest date you could do a rollup and return the Max.

If there is a solution using Glide is there any other reasons you need your data sorted in AirTable specifically?

There isn’t a specific need to sort the data in AirTable.
Can you explain how exactly I need to use the rollup ?

Assuming you have a MULTIPLE relation… do a Rollup via that relation, target your created time and return the ‘Latest’

Do you think it would work if:
Each user has multiple purchases, and I need to find the latest one for each user and insert it into a column in the users’ table?

  • Create a multiple relation from your Users table to your Purchases table, matching the UserID/Email (whichever you have) in each.
  • Then do the rollup as Eric described through that relation
  • That should give you the latest date for each user
2 Likes