Current Quarter and Next Quarter

footballdj123

New Member
Joined
Apr 5, 2018
Messages
8
I have a list of fiscal quarters in this format. I just need to reference todays date and know if the value is Current or Next Quarter.

So for example, Current Quarter is Q220 as we are in April, Next Quarter is Q320.

Follow standard quarters, so Q1 is jan-mar, Q2 is apr-jun, Q3 is jul-sep, Q4 is oct - dec

Q420
Q220
Q320
Q120
Q419
Q319
Q219
Q318
Q119
Q418
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Here are some formula to get the current quarter and next quarter, based on Today's date:
Current: ="Q" & INT((MONTH(TODAY())+2)/3)&TEXT(TODAY(),"yy")
Next: ="Q" & INT((MONTH(EDATE(TODAY(),3))+2)/3)&TEXT(EDATE(TODAY(),3),"yy")


To get the Current and Next quarters for a date in a cell, just replace TODAY() in those formulas with the address of the cell containing the date.
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,693
Members
448,979
Latest member
DET4492

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