Thread: dates of month
View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
rejoyce40 rejoyce40 is offline
external usenet poster
 
Posts: 2
Default dates of month

Wow, that worked just exactly like I wanted - THANK YOU, THANK YOU, THANK
YOU!!!

"T. Valko" wrote:

Try these:

A1 = some date

A3 = 1st Sunday
A5 = 2nd Sunday
A7 = 3rd Sunday
A9 = 4th Sunday
A11 = 5th Sunday (if there is one)

Enter these formulas in their respective cells:

A3: for the 1st Sunday

=A1-DAY(A1)+8-WEEKDAY(A1-DAY(A1)+1-1)

A5: for the 2nd Sunday

=A3+7

A7: for the 3rd Sunday

=A3+14

A9: for the 4th Sunday

=A3+21

A11: for the 5th Sunday (if ther is one)

=IF(MONTH(A9+7)=MONTH(A1),A9+7,"")

You might have to format the cells as Date


--
Biff
Microsoft Excel MVP


"rejoyce40" wrote in message
...
I have a date [i.e. 12/1/2008] that is entered in a cell, then I want all
the
Sunday dates of that month to automatically enter in non-adjacent cells on
the form.

I've searched and cannot get this to work - help would be appreciated!!

thanks!