Hey everyone! I’ve been working with Airtable for a few weeks now and I’m trying to build a formula that assigns quarters based on months. Our company uses a weird fiscal year where quarters start in September and end in August.
Right now I have a column called “Project Date” that contains values like “January-21” or “March-22”. I want to create another column that automatically shows which quarter and year this falls into. For example, if the date is “January-21”, it should display “Q2-Y2”.
The issue is that I’m building this massive nested IF formula like:
This approach means I’ll need to manually add every single month and update the years constantly. There has to be a smarter way to handle this right? Maybe using date functions or some other approach?
u’re overcomplicating this. first, convert the text to actual dates using datevalue(). then use month() to get the month number. after that it’s simple math - sept/oct/nov = q1, dec/jan/feb = q2, and so on. much cleaner than hardcoding every possible combination.