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