How do I convert a number into years and months if the numberrepresents months?

K

Kate

How do I convert a number into years and months if the number
represents months?
Example: A formula to convert 105 Months to 8 Years and 9 months.
 
D

David Heaton

How do I convert a number into years and months if the number
represents months?
Example: A formula to convert 105 Months to 8 Years and 9 months.


Kate,

=INT(105/12)&" years "&MOD(105,12) & " months"

regards

David
 
C

Chip Pearson

Another way

=TRUNC(A1/12)&" years "&MOD(A1,12)&" Years"

Cordially,
Chip Pearson
Microsoft Most Valuable Professional
Excel Product Group, 1998 - 2009
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)
 
Joined
Mar 8, 2011
Messages
1
Reaction score
0
I actually need to go the other way. Can I convert 8 years 9 months into 105 months via a formula in excel?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top