May 18, 2022 11:33 AM
Hello lovely community!
I have a table [Assets] with new entries being created based on video assets in a dropbox via a make(integromat) integration. thats working nicely.
each file ends with a version tag “_v2205181930” which is _v YY MM DD hh mm - which i can extract, read and convert to a date format that airtable understands.
each file auto-links itself to an entry in a [Main] table using a 3 digit ID number. this also works nicely.
if i have two entries in [Assets]
101_SomeRandomWords_v2205181930.mov
101_SomeRandomWords_v2205182000.mov
both linked to entry “101” in [Main]
i want for any entry in [Main] that has more than one linked asset, to compare the date tag in each, find which is the newest and for any older entires tick a checkbox column called “Old”
I cannot for the life of me work out how to achieve this having tried mutiple formulas, lookups, rollups and even poked aorund at scripting [not my area of expertise]
Thank you
Solved! Go to Solution.
May 18, 2022 11:46 AM
See the response here:
See also this episode of BuiltOnAir where this type of setup is covered: BuiltOnAir Podcast Season 8 Episode 2 - YouTube
Instead of it being a Checkbox field, it would be a formula where IF({Latest Date} != {Date}, "✔")
May 18, 2022 11:46 AM
See the response here:
See also this episode of BuiltOnAir where this type of setup is covered: BuiltOnAir Podcast Season 8 Episode 2 - YouTube
Instead of it being a Checkbox field, it would be a formula where IF({Latest Date} != {Date}, "✔")
May 18, 2022 12:16 PM
Thank you @Kamille_Parks very helpful!