Hello everyone,
I am trying to automate project numbers in Airtable. For this year I have used autocount to get a rising number of project IDs. My problem now is that for every new year, I want to reset this count.
So for example the last project in 2022 had the ID 22-105 and the first one for this year should be 23-001.
My logic for this function was
If [previous_record_date_year] == [current_record_date_year] {
[current_record_number] = [previous_record_number] +1
} else {
[current_record_number] = 1
}
Is there a way to implement it that way or am I thinking too lazy?