Fiscal year quarter formula error

jayb8020

New Member
Joined
Sep 14, 2015
Messages
1

Formula for our Our fiscal first quarter 2015 (ending <chron style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 18px;">April 30, 2014</chron>) and fiscal year 2015 (ending <chron style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 18px;">January 31, 2015</chron>):

Feb 2015 is First month of FY2016 that is Q1-16 and Jan 2016 is last month of FY2016 that is Q4-16



=CONCATENATE("Q",ROUNDUP(MONTH(DATE(YEAR(A1),MONTH(A1)-1,DAY(A1)))/3,0))&YEAR(A1)+1

With above formula ,I am not able to get the correct output for January month, Help Please.
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Welcome to the forum.

Try

="Q"&LOOKUP(MONTH(A1),{1,4;2,1;5,2;8,3;11,4})&YEAR(A1)+LOOKUP(MONTH(A1),{1,-1;2,0})
 
Upvote 0
Or this :

="Q"&INT(MOD((MONTH(A1)-5)/3+1,4))+1&"-"&YEAR(A1)-(MONTH(A1)=1)+1
 
Upvote 0
or make a table with the months and the responding quartal.

after that use vlookup to find the quartal.
 
Upvote 0

Forum statistics

Threads
1,216,756
Messages
6,132,527
Members
449,733
Latest member
Nameless_

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