View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
[email protected] Toyin.Butler@googlemail.com is offline
external usenet poster
 
Posts: 14
Default scheduling macros to run automatically

I use Application.OnTime

Say you woould like to run MySub at 12:00

Sub Run()

Application.OnTime date + 12:00, "MySub"


End Sub

hth

Toy.