I saw a post that showed an answer that delivered almost everything I wanted and I have pasted that in below. That post has been closed hence starting a new one. However please could someone advise how to adjust the formula so that the entry is only removed from the current year and moved to the following year once the day has passed (rather than on the day itself).
For instance, using the formula below, a birthday on 27 June 2020 will disappear from the 2020 calendar on that day and appear on 27 June 2021. I would like to delay that until 28 June so I can still see the current event on the day itself (27 June in this case).
Here is the formula from the previous post that I would like to adapt. Apologies for not crediting the person who posted this formula - I have navigated away from the page and can’t find it at the moment.
I tried messing about with IS_AFTER but I am not sure if this is the right way to do it or how to insert that successfully into the formula if it is.
DATETIME_PARSE(
DAY({Birthdate}) & “-” &
MONTH({Birthdate}) & “-” &
(YEAR(TODAY()) + IF(
DATETIME_FORMAT({Birthdate}, “MMDD”) > DATETIME_FORMAT(TODAY(), “MMDD”),
0, 1)
),
“D-M-YYYY”
)
