Oct 24, 2023 09:50 AM
I have searched for how to do this, but it seems unclear. There is no way to group by year, specifically. You can only select past year, next year, specific number of days, etc.
So how do you group items by year?
Solved! Go to Solution.
Oct 24, 2023 05:04 PM
Add a formula field and use the following formula
IF({date},YEAR({date}))
It is better to have an IF statement because if there is no date, it will be displayed as NaN.
Oct 24, 2023 05:04 PM
Add a formula field and use the following formula
IF({date},YEAR({date}))
It is better to have an IF statement because if there is no date, it will be displayed as NaN.
Oct 25, 2023 09:08 AM
Thank you! You would think Airtable would add a feature to sort by year instead of having to use a formula.
And for those of you who are not very code-savvy, here is a more in-depth tutorial.
IF({date},YEAR({date}))