View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Carim[_3_] Carim[_3_] is offline
external usenet poster
 
Posts: 137
Default How to run a macro every March

Irma,

Quite simply ...

Sub Annual()
If Range("A1").Value = 3 Then
' 3 for March
Run ("MyMacro")
End If
End Sub

HTH
Carim