Count Down Years & Months

Chris_010101

Board Regular
Joined
Jul 24, 2017
Messages
183
Office Version
  1. 365
Platform
  1. Windows
Hello

I have a simple spreadsheet in which I keep track of mortgage payments.

My mortgage repayment term is 22 years and 11 months. Beside each months' payment, I would like to count down the number of years and months left.

For example, 22 years, 9 months > 22 years, 8 months etc

I just cannot find a way to do this with a formula

Regards
Chris
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
A2: =TODAY()
B2: =31/07/2045
C2: =DATEDIF(A2,B2;"Y")
D2: =DATEDIF(A2,B2,"YM")
E2: =DATEDIF(A2,B2,"MD")
 

Attachments

  • Immagine 2022-08-11 222557.jpg
    Immagine 2022-08-11 222557.jpg
    15.4 KB · Views: 9
Upvote 0
Solution
A2: =TODAY()
B2: =31/07/2045
C2: =DATEDIF(A2,B2,"Y")
D2: =DATEDIF(A2,B2,"YM")
E2: =DATEDIF(A2,B2,"MD")
The days were unnecessary, so I discarded them from the dated if and used =CONCATENATE(C2, " Years & ", D2, " Months") in an adjacent cell to make it display 22 Years & 10 Months

Thanks for your help with this.

Regards
 
Upvote 0
Glad having been of some help(y).
Now, with only your mortgage repayment date in B2 (or wherever) and no other help cells you can use:

=CONCATENATE(DATEDIF(TODAY(),B2,"Y") & " Years " & DATEDIF(TODAY(),B2,"YM") & " Months")
 
Upvote 0

Forum statistics

Threads
1,214,545
Messages
6,120,132
Members
448,947
Latest member
test111

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top