Forum Discussion
sf49ers19238597
Sep 12, 2024Iron Contributor
I have a formula for calculate age from birthday date
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.
- Sep 12, 2024use this: =IF(ISBLANK(B2), "", DATEDIF(B2, TODAY(), "Y"))
Rodrigo_
Sep 12, 2024Iron Contributor
use this: =IF(ISBLANK(B2), "", DATEDIF(B2, TODAY(), "Y"))