application ontime use

bkachra

New Member
Joined
May 22, 2011
Messages
2
Hi, new to this board and have tried to use the advice already available but no sucess. I am guessing there is a simple solution.

I need to clear an area of 1 tab, cells A1: X10, at a particular day and time.
Does anyone know to do this? I understand its application.ontime I need to use?

Many thanks
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Maybe;

Code:
Sub test
Dim cleartime As Date
 
cleartime = "00:12:00"
Application.OnTime cleartime, "cellclear",
End Sub
 
Sub cellclear()
 
' add the cells to clear here
 
End Sub
 
Upvote 0
Thank you for the prompt response, your solution doesnt state how to select a day and date, can you add to your response please?

Thanks
 
Upvote 0

Forum statistics

Threads
1,214,943
Messages
6,122,370
Members
449,080
Latest member
Armadillos

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