Working with dates and cycles

Prish

Board Regular
Joined
Mar 30, 2016
Messages
91
Please can someone assist me with some formulas working with dates and yearly cycles.
I need formulas for the cells highlighted in green below based on today's date.


Excel 2013/2016
CDEFG
1Today05 March 2018
2
3Start DateCycle in yearsCurrent start cycleCurrent end cycleExpiring in
401 January 19985
508 November 20022
610 February 20133
Sheet1



The cycle in years tells you how many years it takes a cycle from the start date.
Eg. Start date = 01 January 1998 - I need to find the current cycle we in which would be 01 January 2014 to 31 December 2018.
Current start cycle will therefore be 01 January 2014 and current end cycle would be 31 December 2018.
Expiring must show the remaining years and months to reach 31 December 2018, in this case = 0 years & 10 months.

Thanks.
 
Last edited:

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Formulae as follows:

Cell E4:
=DATE(YEAR(C4)+(ROUNDDOWN(DATEDIF(C4,$D$1,"Y")/D4,0)*D4), MONTH(C4), DAY(C4))

Cell F4:
=DATE(YEAR(C4)+((ROUNDDOWN(DATEDIF(C4,$D$1,"Y")/D4,0)+1)*D4), MONTH(C4), DAY(C4))-1

Cell G4:
=DATEDIF($D$1,F4,"Y") & " years & " & MOD(DATEDIF($D$1,F4,"M"),12) & " months"

Then copy down
 
Upvote 0

Forum statistics

Threads
1,214,391
Messages
6,119,239
Members
448,879
Latest member
VanGirl

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