Stop / reset all ontime events

loloelpalomero

New Member
Joined
Sep 16, 2008
Messages
12
Hi. I have used a few ontime events in a sheet that call a macro when time is reached as stated here.

I have noticed that, even if you close excel, the ontime vars are still stored and, if I re-open the file and change times in cells which are referenced from the ontime statement, some strange behavior occurs. Normally, I don't have to change cells containing times but, as time range is about an hour and a half, sometimes I change times to current for checking purposes and it seems to keep on counting or something...

What I would like to do is some kind of reset upon closing the sheet, or a button, macro or something for the ontime function.

Thanks.
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
You will need to do something like this. Right click the Excel logo just to the left of File on the menu bar, select View Code and paste in

Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
Application.OnTime earliesttime:=TimeValue([A1]), procedure:="colorbg_macro", schedule:=False
End Sub

You will need to qualify the sheet name in this statement

Code:
:=TimeValue([A1])
 
Upvote 0
Hello VoG II. Thanks for answering but I have tested your code using this:

Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
Application.OnTime earliesttime:=TimeValue([Hoja1]), procedure:="colorbg01", schedule:=False
End Sub

"Hoja1" is name of the sheet. I have tried both names: The excel one (Sheet1=Hoja1) and the alias (the one wich appears in tabs below the sheet.

But error 438 is given. I am not sure how the exact error is in english as I use spanish version. But translated from spanish is something like "Object does not allow this property or method".

Any solution, please?

Thanks.
 
Upvote 0
Try

Code:
Application.OnTime earliesttime:=TimeValue(Sheets("Hoja1").Range("A1").Value), procedure:="colorbg01", schedule:=False
 
Upvote 0

Forum statistics

Threads
1,214,574
Messages
6,120,329
Members
448,956
Latest member
Adamsxl

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top