Gary, try using this macro. Note that this assumes you have a macro for printing called "Print_Out".
Sub timer()
Application.OnTime TimeValue("10:00:00"), "Print_Out"
Application.OnTime TimeValue("13:00:00"), "Print_Out"
Application.OnTime TimeValue("16:00:00"), "Print_Out"
End Sub
You will have to run this macro at the beginning of the day and it will run the "Print_Out" macro at 10:00 am, 1:00 pm, and 4:00 pm. All you need to do is change the name of the macro to run (from "Print_Out") and the times you want to print.
Regards,
Barrie
http://ca.geocities.com/b_davidso
Thanks you so much, Mr Davidson.
I was able to get it to work right away.
Will be checking out your web site too.
Gary