Deriving the quarterly period from a date

FJMD1003

New Member
Joined
Mar 9, 2011
Messages
16
Hi all,

I'm looking to use a date value to drive a formula that will return the quarterly period that the date falls into. I'm defining the quarters as such:

Quarter 1: Jan-March
Q2: April - June
Q3: July-September
Q4: October - December

It will also have to reference the year of the quarter, e.g. if date is 01/01/2012 formula would return Q1 2012 or for 01/01/2011 Q1 2011. Dates are UK format.

Any ideas? Can I do this through some clever cell formatting? Or do I need to crunch an unwieldy formula? ;)

Many thanks for the help,

Fred
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Peter - not only was that response super quick but totally correct - thanks so much! Greatly appreciated!

Fred
 
Upvote 0
This should work:
Code:
="Q"&MATCH(MONTH(A1),{1,4,7,10},1)&" "&YEAR(A1)
 
Upvote 0

Forum statistics

Threads
1,224,603
Messages
6,179,849
Members
452,948
Latest member
UsmanAli786

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