You may want to explore VBA Weekday Function and add to your macro some logic like:
Code:
MsgBox Weekday(Date())
MsgBox WeekdayName(Weekday(Date()))
Select Case Weekday(Date())
Case 1, 2, 7 [green]'Sun, Mon, Sat
[/green]
Case Else [green]'All other days[/green]
End Select
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.