PDA

View Full Version : Solved: Break up total months into years and month



tlchan
03-28-2009, 02:29 AM
Hi,

I would like to break up total number of months into No of years and month from cell F4 using function. Is anyone assist ?

Thank you

p45cal
03-28-2009, 03:02 AM
=INT(F4/12)
and
=MOD(F4/12,1)*12
amongst many others

tlchan
03-28-2009, 04:39 AM
Thanks P45cal for your solution.