VBA Macro for ontime start and end time

vdphhusdwroh

New Member
Joined
Jul 10, 2019
Messages
3
I have a VBA Macro which runs in loop as below, want to specify the start and end time for it to run. Could any of your please help me.

Sub execute()
'' Should run only if current time start time is between 11:00 to 14:00
Do
MsgBox "test", vbInformation
Loop
End Sub
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Here is some code that I've compiled But its not working either.





Sub my_Procedure()
MsgBox "processing", vbInformation
End Sub


Sub Timed()
Application.OnTime TimeValue("00:22:35"), "my_procedure"
End Sub


Sub Frequency()
Application.OnTime Now + TimeValue("00:00:03"), "my_Procedure"
End Sub


Sub Stops()
Application.OnTime EarliestTime:=TimeValue("17:00:00"), _
Procedure:="my_Procedure", Schedule:=False
End Sub


What might be going wrong here?
 
Upvote 0

Forum statistics

Threads
1,214,780
Messages
6,121,522
Members
449,037
Latest member
tmmotairi

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