Make a New Year if date starts after 8/15 of current year

anthonyexcel

Active Member
Joined
Jun 10, 2011
Messages
258
Office Version
  1. 365
Platform
  1. Windows
Good Afternoon,

I have to change my dates based on a fiscal year that goes from 8/15/2011 to 8/14/2012.Trying to figure out a formula but am stuck! Thanks in advance Anthony!

Examples:
7/11/2011 stays 7/11/2011
8/1/2011 stays 8/1/2011
8/15/2011 becomes 8/15/2012
9/17/2011 becomes 9/17/2012
1/12/2012 stays 1/12/2012
8/15/2012 becomes 8/15/2013
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Try this formula (assumes your first date is in cell A1)

=IF(OR(AND(MONTH(A1)=8,DAY(A1)>14),MONTH(A1)>8),DATE(YEAR(A1)+1,MONTH(A1),DAY(A1)),A1)
 
Upvote 0
Try This
<b>Excel 2007</b><table cellpadding="2.5px" rules="all" style=";background-color: #FFFFFF;border: 1px solid;border-collapse: collapse; border-color: #A6AAB6"><colgroup><col width="25px" style="background-color: #E0E0F0" /><col /><col /></colgroup><thead><tr style=" background-color: #E0E0F0;text-align: center;color: #161120"><th></th><th>C</th><th>D</th></tr></thead><tbody><tr ><td style="color: #161120;text-align: center;">1</td><td style="text-align: right;;">11/07/2011</td><td style="text-align: right;;">11/07/2011</td></tr><tr ><td style="color: #161120;text-align: center;">2</td><td style="text-align: right;;">01/08/2011</td><td style="text-align: right;;">01/08/2011</td></tr><tr ><td style="color: #161120;text-align: center;">3</td><td style="text-align: right;;">15/08/2011</td><td style="text-align: right;;">15/08/2012</td></tr><tr ><td style="color: #161120;text-align: center;">4</td><td style="text-align: right;;">17/09/2011</td><td style="text-align: right;;">17/09/2012</td></tr><tr ><td style="color: #161120;text-align: center;">5</td><td style="text-align: right;;">12/01/2012</td><td style="text-align: right;;">12/01/2012</td></tr><tr ><td style="color: #161120;text-align: center;">6</td><td style="text-align: right;;">15/08/2012</td><td style="text-align: right;;">15/08/2013</td></tr></tbody></table><p style="width:3.6em;font-weight:bold;margin:0;padding:0.2em 0.6em 0.2em 0.5em;border: 1px solid #A6AAB6;border-top:none;text-align: center;background-color: #E0E0F0;color: #161120">Sheet2</p><br /><br /><table width="85%" cellpadding="2.5px" rules="all" style=";border: 2px solid black;border-collapse:collapse;padding: 0.4em;background-color: #FFFFFF" ><tr><td style="padding:6px" ><b>Worksheet Formulas</b><table cellpadding="2.5px" width="100%" rules="all" style="border: 1px solid;text-align:center;background-color: #FFFFFF;border-collapse: collapse; border-color: #A6AAB6"><thead><tr style=" background-color: #E0E0F0;color: #161120"><th width="10px">Cell</th><th style="text-align:left;padding-left:5px;">Formula</th></tr></thead><tbody><tr><th width="10px" style=" background-color: #E0E0F0;color: #161120">D1</th><td style="text-align:left">=IF(<font color="Blue">AND(<font color="Red">DAY(<font color="Green">C1</font>)>=15,MONTH(<font color="Green">C1</font>)>=8</font>),DATE(<font color="Red">YEAR(<font color="Green">C1</font>)+1,MONTH(<font color="Green">C1</font>),DAY(<font color="Green">C1</font>)</font>),C1</font>)</td></tr></tbody></table></td></tr></table><br />
 
Upvote 0

Forum statistics

Threads
1,224,600
Messages
6,179,834
Members
452,947
Latest member
Gerry_F

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