Calculate a date of birth fro an age in days number

jonesy

New member
Joined
Apr 23, 2020
Messages
1
Reaction score
0
Points
0
Excel Version(s)
2007
I have ages in days and need to convert them to a date of birth on the current day i.e. todays date.

Can anyone help?

Thanks
 
Assuming AGE is in A1

Put this formula in B1

=TEXT(TODAY(),"MM/DD/")&VALUE(TEXT(TODAY(),"YYYY"))-A1
 
Back
Top