Formula to find Each Tuesday of the particular month i set in a separate cell

dandeisel

New Member
Joined
Feb 1, 2017
Messages
16
Hi,

Can someone help me figure out a formula that will calculate the date of each Tuesday of the month that I have in Cell A1?

For example. In Cell A1 I have the number 5 to represent the 5th month of the year (MAY) what formula should I put in the next 5 cells that will pull up the 1st Tuesday, 2nd Tuesday, 3rd Tuesday, 4th Tuesday and if applicable that month the 5th Tuesday?

Thanks for your help!
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
This formula will find the first tuesday:

=DATE(YEAR(TODAY()),$A$1,1+7*ROWS($A$1:A1))-WEEKDAY(DATE(YEAR(TODAY()),$A$1,5))

Drag down for subsequent tuesdays. If you want to return blank as you go into a seperate month you can use this:

=IF(MONTH(DATE(YEAR(TODAY()),$A$1,1+7*ROWS($A$1:A1))-WEEKDAY(DATE(YEAR(TODAY()),$A$1,5)))=$A$1,DATE(YEAR(TODAY()),$A$1,1+7*ROWS($A$1:A1))-WEEKDAY(DATE(YEAR(TODAY()),$A$1,5)),"")
 
Upvote 0
Steve! Your awesome!!! Thank you so much. It worked perfectly. Quick question if you don't mind. If I wanted to find the Friday of the same formula what number do I need to change?
 
Upvote 0

Forum statistics

Threads
1,214,929
Messages
6,122,315
Members
449,081
Latest member
tanurai

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