Written by Allen Wyatt (last updated November 18, 2023)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365
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, 2021, and Excel in Microsoft 365. You can find a version of this tip for the older menu interface of Excel here: Displaying a Number as Years and Months.
Program Successfully in Excel! John Walkenbach's name is synonymous with excellence in deciphering complex technical topics. With this comprehensive guide, "Mr. Spreadsheet" shows how to maximize your Excel experience using professional spreadsheet application development tips from his own personal bookshelf. Check out Excel 2013 Power Programming with VBA today!
Need to know how many days there are between two dates? It's easy to figure out—unless you need the figure in ...
Discover MoreWhen working with dates, it is often helpful to be able to calculate some date in the future based on a starting date. ...
Discover MoreSometimes it is handy to know how many days are left in the current year. This tip provides a quick formula that ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
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
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.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments