Jun 24, 2022 01:31 PM
Hi-
We’re trying to get Airtable to sort a list of records by the most recent linked record. Basically, we want Airtable to ‘understand’ dates in a linked record.
Here’s the basic flow:
The problem is that even though each Sponsor has all its Sponsorships linked to it, I don’t see any way to get Airtable to use the linked Sponsorship records to sort Sponsors.
We’ve tried a Lookup field of the date of the Sponsorship, but Airtable treats the earliest date as the “first” item in the Lookup field, and can only sort by that first date.
Any idea how to get around this? Perhaps create a field on the Sponsor table that contains only the most recent date of a Sponsorship? Would that require a script?
TIA
Solved! Go to Solution.
Jun 24, 2022 02:28 PM
Hi there!
Here’s how to get the date of a sponsor’s most recent sponsorship:
MAX(values)
This should give you the most recent sponsorship date :slightly_smiling_face:
I hope this helps!
Jun 24, 2022 02:28 PM
Hi there!
Here’s how to get the date of a sponsor’s most recent sponsorship:
MAX(values)
This should give you the most recent sponsorship date :slightly_smiling_face:
I hope this helps!
Jun 24, 2022 02:42 PM
Amazing, that does the trick! Thank you!