WallStreetMojo

WallStreetMojo

WallStreetMojo

MENUMENU
  • Blog
  • Free Video Tutorials
  • Courses
  • All in One Bundle
  • Login
Home » Excel, VBA & Power BI » Learn VBA » VBA Pause

VBA Pause

By Jeevan A YJeevan A Y | Reviewed By Dheeraj VaidyaDheeraj Vaidya, CFA, FRM

Pause VBA Code From Running

VBA Pause is used to pause the code from executing it for a specified amount of time and to pause a code in VBA we use application.wait method.

When we build large VBA projects after performing something, we may need to wait for some time to do other tasks. In such scenarios, how do we pause the macro code to do our task? We can pause the VBA code for a specified time period by using two functions, and those functions are “Wait” & “Sleep.”

vba-pause

How to Pause Code using Wait Method?

“Wait” is the function we use in VBA to hold the macro running for a specific amount of time. By applying this function, we need to mention until what time our code should wait.

You can download this VBA Pause Excel Template here – VBA Pause Excel Template

For example, if you are executing the code at 13:00:00, if you supply the time as “13:15:00”, then it will hold the macro running for 15 minutes.

Now, look at the argument of WAIT function in VBA.

vba pause syntax

In time argument, we need to mention at what time our code should pause or wait.

For example, look at the below VBA code.

Code:

Sub Pause_Example1()

Range("A1").Value = "Hello"
Range("A2").Value = "Welcome"

Application.Wait ("13:15:00")

Range("A3").Value = "To VBA"

End Sub

vba pause example 1.1

Remember, while running this code, my system time is 13:00:00. As soon as I run the code, it will execute the first two lines i.e.

Range("A1").Value = "Hello” &

Range("A2").Value = "Welcome"

But if you look at the next line, it says Application.Wait (“13:15:00”), so after executing those lines tasks, my macro will be paused for 15 minutes, i.e., from 13:00:00, it will wait until my system time reaches 13:15:01.

Once my system time reaches that time, it will execute the remaining lines of code.

Range("A3").Value = "To VBA"

However, this is not the best way of practicing the pause code. Let’s say you are running the code at different times, and then we need to use the NOW VBA function with TIME VALUE function.

Popular Course in this category
Sale
VBA Training (3 Courses, 12+ Projects)
4.6 (247 ratings)
3 Courses | 12 Hands-on Projects | 43+ Hours | Full Lifetime Access | Certificate of Completion
View Course

Now function returns the current date & time as per the system we are working on.

TIME Value function holds the time from 00:00:00 to 23:59:29.

Ok, assume we need to pause the code for 10 minutes whenever we run the code, then we can use the below code.

Code:

Sub Pause_Example1()

Range("A1").Value = "Hello"
Range("A2").Value = "Welcome"

Application.Wait (Now() + TimeValue("00:00:10"))

Range("A3").Value = "To VBA"

End Sub

vba pause example 1.2

This is similar to previous code, but the only difference is we have added the NOW & TIME VALUE function.

Whenever we run this code, it will hold or pause the execution for 10 minutes.

How to Pause the VBA Code using Sleep Method?

Sleep is a complicated function in VBA because it is not a built-in function. Since it is not a built-in in order to make it available to use, we need to add the below code to the top of our module.

Code:

#If VBA7 Then
Public Declare PtrSafe Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As LongPtr)
'For 64 Bit Systems
#Else
Public Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
#End If
'For 32 Bit Systems

You just have to copy the above code and paste it at the top of the module.

vba pause example 2.1

The reason why we need to add the above code because SLEEP is a VBA function presented in Windows DLL files, so we need to declare the nomenclature before we start the subprocedure.

Ok, let’s look at the example of the SLEEP function now.

Code:

Sub Pause_Example2()

Dim StartTime As String
Dim EndTime As String
StartTime = Time

MsgBox StartTime

Sleep (10000)

EndTime = Time

MsgBox EndTime

End Sub

example 2.2

First, we have declared two variables as String.

Dim StartTime As String

Dim EndTime As String

Then we have assigned the TIME excel function to the StartTime variable. TIME function returns the current time as per system.

StartTime = Time

Then we have assigned the same to show in the message box.

MsgBox StartTime

Then I have applied the SLEEP function as Sleep (10000).

Here 10000 is milliseconds, which is equal to 10 seconds in VBA.

Then, at last, I have assigned the one more TIME function to the variable EndTime.

Now again, I have written a code to show the time.

EndTime = Time

This will show the difference between start time and end time.

Now I will execute the code and see what the start time is.

example 2.3

When I execute the code, my system time is 13:40:48, and now my code will sleep for 10 seconds. In the end, my time is as follows.

example 2.4

So, like this, we can pause the code from executing it for a specified amount of time.

Recommended Articles

This has been a guide to VBA Pause Method. Here we discuss how to pause code from running using the SLEEP and WAIT for function in Excel VBA with examples and a downloadable excel sheet. You can learn more about VBA from the following articles –

  • VBA InStr Function
  • VBA COUNTIF
  • VBA Val Function
  • VBA Progress Bar
6 Shares
Share
Tweet
Share
VBA Training (3 Courses, 12+ Projects)
  • 3 Courses
  • 12 Hands-on Projects
  • 43+ Hours
  • Full Lifetime Access
  • Certificate of Completion
LEARN MORE >>
Primary Sidebar
Footer
COMPANY
About
Reviews
Contact
Privacy
Terms of Service
RESOURCES
Blog
Free Courses
Free Tutorials
Investment Banking Tutorials
Financial Modeling Tutorials
Excel Tutorials
Accounting Tutorials
Financial Statement Analysis
COURSES
All Courses
Financial Analyst All in One Course
Investment Banking Course
Financial Modeling Course
Private Equity Course
Venture Capital Course
Excel All in One Course

Copyright © 2021. CFA Institute Does Not Endorse, Promote, Or Warrant The Accuracy Or Quality Of WallStreetMojo. CFA® And Chartered Financial Analyst® Are Registered Trademarks Owned By CFA Institute.
Return to top

WallStreetMojo

Free Excel Course

Excel functions, Formula, Charts, Formatting creating excel dashboard & others

* Please provide your correct email id. Login details for this Free course will be emailed to you

Book Your One Instructor : One Learner Free Class
Let’s Get Started
Please select the batch
Saturday - Sunday 9 am IST to 5 pm IST
Saturday - Sunday 9 am IST to 5 pm IST

This website or its third-party tools use cookies, which are necessary to its functioning and required to achieve the purposes illustrated in the cookie policy. By closing this banner, scrolling this page, clicking a link or continuing to browse otherwise, you agree to our Privacy Policy

WallStreetMojo

Free Excel Course

Excel functions, Formula, Charts, Formatting creating excel dashboard & others

* Please provide your correct email id. Login details for this Free course will be emailed to you

Login

Forgot Password?

WallStreetMojo

Download VBA Pause Excel Template

Special Offer - VBA Training Course (6 courses, 35+ hours video) View More