Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021. If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Excel, click here: Displaying a Number as Years and Months.

Displaying a Number as Years and Months

Written by Allen Wyatt (last updated November 18, 2023)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021


1

Robert has a formula that determines the payback period for certain investments. For instance, with $20,000 investment in energy-savings equipment and an annual energy savings of $3000, the simplistic payback period to recoup the investment is 6.6667 years. Robert wonders how he can make this payback period (6.6667) show as years and months instead of as a decimal number.

This can be done by simply multiplying the portion of the answer at the right of the decimal point by 12, which results in a number of months. Here is one way to get the desired result, assuming that the payback result is in cell A1:

=INT(A1) & " years / " & ROUNDUP((A1-INT(A1))*12,0) & " months"

With the value 6.6667 in cell A1, the formula would return "6 years / 8 months".

If you are using Microsoft 365, you also have access to the LET function. Using this you can make your formula more complex, but it ends up being more versatile. Here's an example:

=LET(A, ROUNDUP(A1*12,0)/12, Y, INT(A), M, ROUNDUP((A-Y)*12,0),
Y & IF(Y=1, " year", " years") & IF(M=0, " exactly", " / " &
M & IF(M=1, " month"," months")))

Even though I've shown the formula on three lines here, remember that it is a single, long formula. The LET function allow you to define variables that can be used in your formula. In this case, the pertinent variables being defined are Y (the number of years) and M (the number of months). The formula returns, in Robert's case, "6 years / 8 months" (just like the earlier formula), but it really shines if the number of months is 0 or 1. If it is 0, then the formula returns something like "6 years exactly", and if the number of months is 1, then it would return something like "6 years / 1 month" (note the lack of plural "months"). If will even handle "year" and "years" correctly.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (12485) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021. You can find a version of this tip for the older menu interface of Excel here: Displaying a Number as Years and Months.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Noting When a Workbook was Changed

Do you need to know when a workbook was last changed? There are a couple of ways you can go about keeping track of the ...

Discover More

Margins for All Documents Changing

Have you had the margins in a group of documents change without you knowingly doing anything? This tip explores some ...

Discover More

Viewing Footnotes and Endnotes

Footnotes and endnotes are normally visible with the rest of your document, but such visibility is dependant on which ...

Discover More

Solve Real Business Problems Master business modeling and analysis techniques with Excel and transform data into bottom-line results. This hands-on, scenario-focused guide shows you how to use the latest Excel tools to integrate data from multiple tables. Check out Microsoft Excel 2013 Data Analysis and Business Modeling today!

More ExcelTips (ribbon)

Finding the Dates for Minimums and Maximums

If you use Excel to maintain a collection of data, you may need to find information in one column based on information in ...

Discover More

Calculating Weekend Dates

Do you look forward to the weekend? Well, you can use Excel to let you know when the next weekend begins. Here's how you ...

Discover More

Including Weeks in Elapsed Time

When showing how much time has elapsed between two dates, it is sometimes helpful to express the result in terms of ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 2 + 2?

2023-11-18 15:41:44

J. Woolley

The Tip's formulas do not yield its reported results. The first formula should be corrected by using ROUND instead of ROUNDUP, so it becomes:
=INT(A1) & " years / " & ROUND((A1-INT(A1))*12,0) & " months"

Here is simpler version:
=INT(A1) & " years / " & INT(MOD(A1*12,12)) & " months"

The second formula should also be corrected by using ROUND instead of ROUNDUP (all on one line):
=LET( Y, INT(A1), M, ROUND((A1-Y)*12,0), Y & IF(Y=1, " year", " years") &
IF(M=0, " exactly", " / " & M & IF(M=1, " month"," months")))

Here is another version (all on one line):
=LET( Y, INT(A1), M, INT(MOD(A1*12,12)), Y & IF(Y=1, " year", " years") &
IF(M=0, " exactly", " / " & M & IF(M=1, " month"," months")))

And here is a simpler one based on Willy Vanhaelen's method for plural values (all on one line):
=LET( Y, INT(A1), M, INT(MOD(A1*12,12)), Y & LEFT(" years",4+Y) &
IF(M=0, " exactly", " / " & M & LEFT(" months",5+M)))

Finally, it is possible to specify a custom Fraction Number format for cell A1 instead of adding a text formula to another cell. This custom format
0 "and" 0/12 "yr"
will display 6.6667 as
6 and 8/12 yr


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.