Excel VBA Video Training/ EXCEL DASHBOARD REPORTS

Ozgrid, Experts in Microsoft Excel Spreadsheets

Do While Loop

 

More Excel Video Tutorials

Do While Loop, Repeat a Block of VBA Macro Code

Back To: Excel VBA Loops . Lot's of free Excel VBA . Got any Excel Questions? Free Excel Help

Do WhileLoop

There are 2 ways a Do While loop can be used in Excel VBA Macro code. You can tell Excel to check the condition before entering the loop, or tell Excel to enter the loop and then check the condition. To stop an endless loop, press ESC or CTRL+BREAK. To force an exit from a Do Until loop you use the line: Exit Do, e.g. If lNum = 7 Then Exit Do

 

 

In the first example (Check_First) the condition (lNum>10) is checked before entering the loop.

In the second example (Check_After) the condition (lNum>10) is checked after entering the loop.

 
 
 
Sub Check_First()



Dim lCount As Long



Dim lNum As Long







    lCount = 0



    lNum = 11



    Do While lNum > 10



        lNum = lNum - 1



        lCount = lCount + 1



    Loop



    MsgBox "The Do While loop made " & lCount & " loop(s)."



End Sub











Sub Check_After()



Dim lCount As Long



Dim lNum As Long







    lCount = 0



    lNum = 9



    Do



        lNum = lNum - 1



        lCount = lCount + 1



    Loop While lNum > 10



    MsgBox "The Do While loop made " & lCount & " loop(s)."



End Sub

Do Loops

Syntax
Do
[{While | Until} condition]
[statements]
[Exit Do]
[statements]
Loop

Or, you can use this syntax:
Do

[statements]
[Exit Do]
[statements]
Loop [{While | Until} condition]

Excel Dashboard Reports & Excel Dashboard Charts 50% Off Become an ExcelUser Affiliate & Earn Money

Special! Free Choice of Complete Excel Training Course OR Excel Add-ins Collection on all purchases totaling over $64.00. ALL purchases totaling over $150.00 gets you BOTH! Purchases MUST be made via this site. Send payment proof to [email protected] 31 days after purchase date.



Instant Download and Money Back Guarantee on Most Software

Excel VBA Video Training/ EXCEL DASHBOARD REPORTS

Excel Trader Package Technical Analysis in Excel With $139.00 of FREE software!

Microsoft � and Microsoft Excel � are registered trademarks of Microsoft Corporation. OzGrid is in no way associated with Microsoft

Some of our more popular products are below...
Convert Excel Spreadsheets To Webpages | Trading In Excel | Construction Estimators | Finance Templates & Add-ins Bundle | Code-VBA | Smart-VBA | Print-VBA | Excel Data Manipulation & Analysis | Convert MS Office Applications To...... | Analyzer Excel | Downloader Excel | MSSQL Migration Toolkit | Monte Carlo Add-in | Excel Costing Templates