difference between years

  • Thread starter Thread starter rahul
  • Start date Start date
R

rahul

Hi,

For my company purpose i need to take the exact age of
customer.for that i need a formula,so that if i enter
users date of birth in one column & present date in
another colunm i should get the exact age of user.Please
help me regarding this

with regards
Rahul
 
You can use this without the need for a 2nd col:

=DATEDIF(A2,NOW(),"y")&" years, "&DATEDIF(A2,NOW(),"ym")&" months,
"&DATEDIF(A2,NOW(),"md")&" days"

If a separate col is preferred; substitute that cell ref for "NOW"
 
Back
Top