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

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
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,950
Messages
6,122,436
Members
449,083
Latest member
Ava19

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