Hi
With date in A1
=Year(A1)
=Month(A1)
=Day(A1)

Signature
Regards
Roger Govier
> can any one help me to covert 12/10/1970 to years/months/days
Maybe you mean
=DATEDIF(A1,TODAY(),"Y")&" years, "&DATEDIF(A1,TODAY(),"YM")&" months,
"&DATEDIF(A1,TODAY(),"MD")&" days"

Signature
HTH
Bob Phillips
(replace somewhere in email address with gmail if mailing direct)
> can any one help me to covert 12/10/1970 to years/months/days
Rookie 1st class - 31 Oct 2006 00:12 GMT
Custom format in helper cell
yyyy/mm/dd
="cell address" in helper cell
Hth
Lou
> Maybe you mean
>
> =DATEDIF(A1,TODAY(),"Y")&" years, "&DATEDIF(A1,TODAY(),"YM")&" months,
> "&DATEDIF(A1,TODAY(),"MD")&" days"
>
> > can any one help me to covert 12/10/1970 to years/months/days