Run VBA at Radom time at night

shophoney

Active Member
Joined
Jun 16, 2014
Messages
281
Hi,

I need to run VBA code at a random time at night between 9:30pm and 10pm.

Private Sub Workbook_Open()

ActiveWorkbook.RefreshAll

Application.OnTime Now() + TimeValue("00:00:" & CStr(100)), "CDO_Email_Nightly_DSS"
Application.OnTime Now() + TimeValue("00:015:0"), "CDO_Email_Nightly_DSS_Detailed"

'ActiveWorkbook.Close
ActiveWorkbook.Close SaveChanges:=True

End Sub
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Don't use the Now function, since that's giving you the current date and time. Instead, use the Date function, like in
VBA Code:
    Application.OnTime Date + TimeValue("21:31:00"), "CDO_Email_Nightly_DSS"
    Application.OnTime Date + TimeValue("21:46:00"), "CDO_Email_Nightly_DSS_Detailed"
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,550
Members
449,088
Latest member
davidcom

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