conditional macros

P

papou

Hello
Place a test in the Workbook_Open event:
Private Sub Workbook_Open()
If Date = "15/09/2004" Then Macro1
End Sub
And in a standard module place your macro :
Sub Macro1()
MsgBox "It's time to run"
End Sub

HTH
Cordially
Pascal
 
Top