Finding Particular Day of Month

  • Thread starter Thread starter DF
  • Start date Start date
Try

=DATE(YEAR(A1),MONTH(A1),15)-WEEKDAY(DATE(YEAR(A1),MONTH(A1),4))


where A1 holds any day of the particular month you want to check for
 
=11-WEEKDAY(DATE(YEAR(TODAY()),MONTH(TODAY()),1))+DATE(YEAR(TODAY()),MONTH(TODAY()),1)
 
Is there a way to find the second Wednesday of each month using Excel
97?

With some date in the month of concern in A1, try:

=A1-DAY(A1)+15-WEEKDAY(A1-DAY(A1)+4)


--ron
 
DF said:
Is there a way to find the second Wednesday of each month using Excel
97?


Hey, it works!!

I tried the formulas given by Peo Sjoblom and Ron Rosenfeld and both work
equally as well. The third formula given by whomever, works but only for
the current month. Thanks for your help. This is neat.
 
Hey, it works!!

I tried the formulas given by Peo Sjoblom and Ron Rosenfeld and both work
equally as well. The third formula given by whomever, works but only for
the current month. Thanks for your help. This is neat.

Glad to help. Thanks for the feedback.
--ron
 
Hey, it works!!

I tried the formulas given by Peo Sjoblom and Ron Rosenfeld and both work
equally as well. The third formula given by whomever, works but only for
the current month. Thanks for your help. This is neat.

Did you try replacing TODAY() in that third formula by A1?
 
"David Biddulph" <groups said:
Did you try replacing TODAY() in that third formula by A1?

No, but I'm sure that would work. I now have two formulas that do what I
want so I didn't bother to try that.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top