Hey all, I’ve been trying to work this out on my own but it’s providing super difficult. I have a birthdate field and I want to find out the age. I am using DATETIME_DIFF(NOW(), Birthday, ‘years’) & ’ years ’ and I see the age however those that haven’t filled in the birthday field say Nan. I would love some help. Thank you
Solved
Formula resulting in NAN
Best answer by Jeremy_Oglesby
YAY thank you so much. That worked.
And if you don’t mind (and if its possible)
If someone filled out their DOB and put 2020 by accident is there a way I can not show the age for any birthdays in the year 2020 alongside the formula you gave me to get rid of the Nan? In the case of this in the age column it would be blank instead of saying 0 Years? 
IF(
AND(
{Birthday},
NOT(DATETIME_DIFF(NOW(), {Birthday}, 'years') < 1)
),
DATETIME_DIFF(NOW(), {Birthday}, 'years') & ' years'
)
Login to the community
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
