S
salgud
I'd like this macro to run only on Mon and Tues. This is what I wrote:
Sub Autpen()
If Weekday(Now()) = 2 Or 3 Then
Call CreateProjStatMenubar
End If
End Sub
But the macro runs every day. Any suggestions?
Sub Autpen()
If Weekday(Now()) = 2 Or 3 Then
Call CreateProjStatMenubar
End If
End Sub
But the macro runs every day. Any suggestions?