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?hi,
i'm trying to make a formula so that the next quarter, third friday is shown....(ie December 21)
Excel 2010 | ||||||||
---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | |||
1 | Date | Next Qtr | Next Qtr | 3rd Friday | 1-Sep-18 | |||
2 | 22-Oct-18 | 1-Dec-18 | 1-Dec-18 | 21-Dec-18 | 1-Dec-18 | |||
3 | 1-Mar-19 | |||||||
1b |
Cell Formulas | ||
---|---|---|
Range | Formula | |
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 |
Just for fun -- here is a more compact formula that returns the same results:It is an ugly formula, but I think it will return the dates you want...