Formula to show dates for the 3rd Tues of every month

faeryluv

New Member
Joined
Sep 1, 2018
Messages
47
Hello, all! I am looking for a formula to display the date of the 3rd Tuesday of every month in 2019. Example: Jan 15, Feb 19, Mar 19, Apr 16, May 21, Jun 18...

I will need to modify the formula to show other dates such as the first Monday of every month, the last Friday of every month, etc.

I am setting up support groups based on their schedule and I need to know the dates. I want to save time so I don't have to look at a calendar each time.

Thank you in advance! :)
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Nice name! :)

How about:


ABCDEFGH
1YearnDay (1=Sun, 2=Mon, etc.)Month
21/21/20192019321
32/18/20192
43/18/20193
54/15/20194
65/20/20195
76/17/20196
87/15/20197
98/19/20198
109/16/20199
1110/21/201910
1211/18/201911
1312/16/201912

<tbody>
</tbody>
Sheet6

Worksheet Formulas
CellFormula
A2=DATE($D$2,G2,1+7*$E$2)-WEEKDAY(DATE($D$2,G2,8-$F$2))

<tbody>
</tbody>

<tbody>
</tbody>



Put the formula in A2, and your parameters in D2:G2. If you put the months down column G, you can drag the formula down column A to get the dates for the rest of the year. This handles the "nth" "weekday" of the month. It won't help if you want the "last" weekday of the month. That formula would be:

=DATE(Year,Month+1,0)-WEEKDAY(DATE(Year,Month+1,0),DOW+10)

where DOW is 1=Sunday, 2=Monday, etc.

Hope this helps! o_O
 
Last edited:
Upvote 0
Nice name! :)

How about:


ABCDEFGH
1YearnDay (1=Sun, 2=Mon, etc.)Month
21/21/20192019321
32/18/20192
43/18/20193
54/15/20194
65/20/20195
76/17/20196
87/15/20197
98/19/20198
109/16/20199
1110/21/201910
1211/18/201911
1312/16/201912

<tbody>
</tbody>
Sheet6

Worksheet Formulas
CellFormula
A2=DATE($D$2,G2,1+7*$E$2)-WEEKDAY(DATE($D$2,G2,8-$F$2))

<tbody>
</tbody>

<tbody>
</tbody>



Put the formula in A2, and your parameters in D2:G2. If you put the months down column G, you can drag the formula down column A to get the dates for the rest of the year. This handles the "nth" "weekday" of the month. It won't help if you want the "last" weekday of the month. That formula would be:

=DATE(Year,Month+1,0)-WEEKDAY(DATE(Year,Month+1,0),DOW+10)

where DOW is 1=Sunday, 2=Monday, etc.

Hope this helps! o_O

Works PERFECTLY!! Thank you so much!!! Glad you like my name btw! :):)
 
Upvote 0
Put following formula in any cell then press "Control+shift+enter" (3 keys), then copy down

=IFERROR(SMALL(IF((WEEKDAY(ROW($43466:$43830),2)=2)*(DAY(ROW($43466:$43830))<8),ROW($43466:$43830),"/"),ROW(A1))+14,"")




Hello, all! I am looking for a formula to display the date of the 3rd Tuesday of every month in 2019. Example: Jan 15, Feb 19, Mar 19, Apr 16, May 21, Jun 18...

I will need to modify the formula to show other dates such as the first Monday of every month, the last Friday of every month, etc.

I am setting up support groups based on their schedule and I need to know the dates. I want to save time so I don't have to look at a calendar each time.

Thank you in advance! :)
 
Upvote 0

Forum statistics

Threads
1,214,605
Messages
6,120,476
Members
448,967
Latest member
visheshkotha

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