Forum Moderators: coopster
I wanted to convert a number of months into years and months, so 23 months = 1 year 11 months.
I was using 23/12 = 1.916666...
So: 1 year plus (0.916666... * 12) months
but 23 % 12 is 11 (the remainder) which is a lot better.
I knew there'd be a really basic thing -- probably why I couldn't find it easily.