Interrupts the program execution until the time specified.WaitUntil TimeTime: A Date and Time expression that contains the date and time to wait before the program is executed.REM Wait until 6:00 PM then call MyMacro.REM If after 6:00 PM, exit.Sub ExampleWaitUntilDim vTimeschedule As Double vTimeSchedule = Date() + TimeValue("18:00:00") If vTimeSchedule < Now() Then Exit Sub WaitUntil vTimeSchedule Call MyMacroEnd SubWait statement