Hi people!
I’m building a “Birthdays” table in my “Calendar” base and I’m looking for a formula that says:
if “Birthday” is within the next 2 months then display “soon”
What would this formula look like?

Hi people!
I’m building a “Birthdays” table in my “Calendar” base and I’m looking for a formula that says:
if “Birthday” is within the next 2 months then display “soon”
What would this formula look like?

Best answer by JonathanB
Thanks Jonathan!
I’m still having a problem here. No errors from the formula but the formula labels ALL of the records as “Soon” in the formula field regardless of date.
Sorry! More complicated than I first realised. Try this:
IF(AND(SUM(DATETIME_FORMAT(TODAY(), "M")-DATETIME_FORMAT({Birthday}, "M"))<=2, SUM(DATETIME_FORMAT(TODAY(), "M")-DATETIME_FORMAT({Birthday}, "M"))>-1), "Soon")
This should work for any date given in {Birthday}, regardless of year.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.