Convert Years to Years/Months/Days

  • Thread starter Thread starter coreymartin
  • Start date Start date
C

coreymartin

Through a calculation, I get an amount of time in years (ex. 1.31
years). How would I convert that number to years/months/days based on
a 360 day year?

Thanks!
Corey
 
Just multiply your result by 360?

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 
One way:

=INT(A1) & " years, " & INT(MOD(A1,1)*12) & " months, " &
MOD(A1*360,30) & " days"
 
Back
Top