Forum Discussion
Hi All,
Thanks for explaining how to do this! I've attempted to copy the formula you've shared to get my birthdays in a month/day format. I keep getting a syntax error reporting a missing parentheses bracket. Here's what I have for my formula. Would you happen to have any idea what I'm doing incorrectly?
var date Birthday=[Date of Birth];
var date Datetest = Date(Year(Today()),Month([Date of Birth]),Day([Date of Birth])
IF($DateTest >= Today(), $DateTest, AdjustYear($DateTest,1))
Thanks in advance! :)
-Abby
try this fix. needs an extra closing ) at the end of the 2nd line.
var date Birthday=[Date of Birth];
var date Datetest = Date(Year(Today()),Month([Date of Birth]),Day([Date of Birth]))
IF($DateTest >= Today(), $DateTest, AdjustYear($DateTest,1))
- AUshYC2 months agoQrew Trainee
Thanks so much! :)