Fiscal Month Formula

ExcelMarf

New Member
Joined
Apr 4, 2011
Messages
12
Hi All,

I'm currently trying to work out how to calculate the fiscal month from a date.

For a fiscal year starting April I have this(date sits in column AG)

=IF(MONTH(AG148)>3,MONTH(AG148)-3,MONTH(AG148)+8)

for a fiscal year starting May I have this

=IF(MONTH(AG148)>4,MONTH(AG148)-4,MONTH(AG148)+8)

Both of these work 100%, however I now need to calculate a fiscal month where the fiscal year starts in October

I tried this

=IF(MONTH(AG148)>9,MONTH(AG148)-9,MONTH(AG148)+8)

But the results are not correct, what am I doing wrong?

Thanks in advance :)

Sam
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Perhaps for April 1 :-

<TABLE style="WIDTH: 226pt; BORDER-COLLAPSE: collapse" border=0 cellSpacing=0 cellPadding=0 width=301><COLGROUP><COL style="WIDTH: 226pt; mso-width-source: userset; mso-width-alt: 11008" width=301><TBODY><TR style="HEIGHT: 12.75pt" height=17><TD style="BORDER-BOTTOM: #f0f0f0; BORDER-LEFT: #f0f0f0; BACKGROUND-COLOR: transparent; WIDTH: 226pt; HEIGHT: 12.75pt; BORDER-TOP: #f0f0f0; BORDER-RIGHT: #f0f0f0" class=xl64 height=17 width=301>=IF(MONTH(A1)<4,MONTH(A1)+9,MONTH(A1)-3)

And similarly for other fiscal year starting dates.
</TD></TR></TBODY></TABLE>
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,234
Messages
6,170,891
Members
452,366
Latest member
TePunaBloke

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