Forum Discussion
var date HireDate=[Hire Date];
var date Datetest = Date(Year(Today()),Month($HireDate),Day($HireDate));
IF($DateTest >= Today(), $DateTest, AdjustYear($DateTest,1)
------------------------------
Mark Shnier (Your Quickbase Coach)
mark.shnier@gmail.com
------------------------------
- KeithHendrick3 years agoQrew MemberWorked perfectly. Thanks!
------------------------------
Keith Hendrick
------------------------------ - AUshYC2 months agoQrew Trainee
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
- MarkShnier__You2 months ago
Qrew Legend
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! :)