zakasnak

Active Member
Joined
Sep 21, 2005
Messages
307
Here are my three formulas:

in R6: =IF(K6="","",CHOOSE(MONTH(K6),2,2,2,3,3,3,4,4,4,1,1,1))
in Q6: =IF(K6="","",YEAR(K6)+IF(MONTH(K6)>=10,1,0))
in P6: =IF(Q6="","",("Q"&R6&" "&"FY"&Q6))

R6 finds the Fiscal Quarter of the date in K6
Q6 finds the Fiscal Year of K6
P6 combines the two results into the format I desire.

I would like to combine the three formulas into one that I can put into P6 for the result : Q3 2015.

Help?
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Try

="Q"&CEILING(MONTH(EDATE(K6,3))/3,1)&TEXT(EDATE(K6,3)," ""FY""yyyy")
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,101
Messages
6,128,837
Members
449,471
Latest member
lachbee

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