get next quarter date , third friday

daveyc18

Well-known Member
Joined
Feb 11, 2013
Messages
707
Office Version
  1. 365
  2. 2010
hi,

i'm trying to make a formula so that the next quarter, third friday is shown....(ie December 21)
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
hi,

i'm trying to make a formula so that the next quarter, third friday is shown....(ie December 21)

sorry scratch that...the first day of the NEXT quarter (e.g., december 1)
 
Last edited:
Upvote 0
hi,

i'm trying to make a formula so that the next quarter, third friday is shown....(ie December 21)
December 1st starts your quarter? So your quarters start on December 1st, March 1st, June 1st, September 1st... is that correct?
 
Upvote 0
It is an ugly formula, but I think it will return the dates you want...

=DATE(YEAR(LOOKUP(TODAY(),DATE(YEAR(TODAY()),{1,3,6,9,12;3,6,9,12,15},1))),MONTH(LOOKUP(TODAY(),DATE(YEAR(TODAY()),{1,3,6,9,12;3,6,9,12,15},1))),22)-WEEKDAY(DATE(YEAR(LOOKUP(TODAY(),DATE(YEAR(TODAY()),{1,3,6,9,12;3,6,9,12,15},1))),MONTH(LOOKUP(TODAY(),DATE(YEAR(TODAY()),{1,3,6,9,12;3,6,9,12,15},1))),2))
 
Upvote 0
Your question is not clear.
A few examples might help.

Consider the following.
The dates for the lookup can be in a range of cells or built into the formula.


Excel 2010
ABCDEF
1DateNext QtrNext Qtr3rd Friday1-Sep-18
222-Oct-181-Dec-181-Dec-1821-Dec-181-Dec-18
31-Mar-19
1b
Cell Formulas
RangeFormula
B2=EDATE(LOOKUP(A2,$F$1:$F$9),3)
C2=EDATE(LOOKUP(A2,{43344;43435;43525;43617;43709;43800;43891;43983;44075}),3)
D2=C2+7-WEEKDAY(DATE(YEAR(C2),MONTH(C2),8-6))+14
 
Upvote 0
It is an ugly formula, but I think it will return the dates you want...
Just for fun -- here is a more compact formula that returns the same results:

=WORKDAY.INTL(EDATE(EOMONTH(TODAY(),-1)+1,CEILING(MONTH(TODAY())+1,3)-MONTH(TODAY()))-1,3,"1111011")
 
Upvote 0

Forum statistics

Threads
1,214,521
Messages
6,120,018
Members
448,937
Latest member
BeerMan23

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