Alter of Excel cell

Member for

19 years 4 months

Many Thanks zhang

keep in tuch

Member for

20 years 6 months

you need some formula,

cell A1 = 11.6 then



year: int(a1)

month: int(mod(a1*365,365)/30)

day:: int(mod(a1*365,30))



you can input the following formula in Cell B1



=int(a1)&"y:"&int(mod(a1*365,365)/30)&"m:"&int(mod(a1*365,30))&"d"



But the result is not 100% acurate, as the caculation is based on 365days/year and 30days/month. Only when you have the start date and finish date then you can get the acurate result

Member for

19 years 5 months

Why do you need this?



Excels calcualtions on time ar based on days.

Why can’t you just use days?



Svein