SOLVED

I have a formula for calculate age from birthday date

Iron Contributor

I have a formula for calculating age from birthday date.

 

=DATEDIF(B2,TODAY(),"Y")

I do not have all birthday dates It put 124. I want it empty. How I do that

 

Thanks You.

1 Reply
best response confirmed by sf49ers19238597 (Iron Contributor)
Solution
use this: =IF(ISBLANK(B2), "", DATEDIF(B2, TODAY(), "Y"))
1 best response

Accepted Solutions
best response confirmed by sf49ers19238597 (Iron Contributor)
Solution
use this: =IF(ISBLANK(B2), "", DATEDIF(B2, TODAY(), "Y"))

View solution in original post