Date of annual increment

baidya91

Board Regular
Joined
Jun 1, 2016
Messages
147
Is there any excel formula to find out annual increment date?
Example: If A1= 01/05/2017 as appointment date, B1= 31/04/2018 as annual increment date, If A1=25/07/2017, B2=30/06/2018....etc.
 
Last edited:

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
=EOMONTH(A1,11)

But that will only give you 1 year after the appointment
were you after this for any year
so if appointment date 23/1/1998 - you would want 31/12/19 now as we have passed 31/12/18
 
Last edited:
Upvote 0
this may work for any year and the spreadsheet opening

=IF(DATE(YEAR(TODAY()),MONTH(EOMONTH(G9,11)),DAY(EOMONTH(G9,11))) < TODAY(),DATE(YEAR(TODAY())+1,MONTH(EOMONTH(G9,11)),DAY(EOMONTH(G9,11))),DATE(YEAR(TODAY()),MONTH(EOMONTH(G9,11)),DAY(EOMONTH(G9,11))))<today(),date(year(today())+1,month(eomonth(g9,11)),day(eomonth(g9,11))),date(year(today()),month(eomonth(g9,11)),day(eomonth(g9,11))))< html=""></today(),date(year(today())+1,month(eomonth(g9,11)),day(eomonth(g9,11))),date(year(today()),month(eomonth(g9,11)),day(eomonth(g9,11))))<>
 
Last edited:
Upvote 0
=IF(DATE(YEAR(TODAY()),MONTH(EOMONTH(a1,11)),DAY(EOMONTH(a1,11))) < TODAY(),DATE(YEAR(TODAY())+1,MONTH(EOMONTH(a1,11)),DAY(EOMONTH(a1,11))),DATE(YEAR(TODAY()),MONTH(EOMONTH(a1,11)),DAY(EOMONTH(a1,11))))

its adding a space in EOMONTH

editing and its OK

try with code
Code:
[COLOR=#333333][FONT=Verdana]=IF(DATE(YEAR(TODAY()),MONTH(EOMONTH(a1,11)),DAY(EOMONTH(a1,11))) < TODAY(),DATE(YEAR(TODAY())+1,MONTH(EOMONTH(a1,11)),DAY(EOMONTH(a1,11))),DATE(YEAR(TODAY()),MONTH(EOMONTH(a1,11)),DAY(EOM ONTH(a1,11))))[/FONT][/COLOR]
 
Last edited:
Upvote 0

Forum statistics

Threads
1,213,510
Messages
6,114,037
Members
448,543
Latest member
MartinLarkin

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