Macros in Excel are written in a language called VBA. Like other programming languages, VBA includes certain programming structures that are used to control how the program executes. One of these structures is the While...Wend structure. This structure has the following syntax:
While condition program statements Wend
When a macro is executing and this structure is encountered, the language tests whatever condition you have defined. You can see examples of conditions in many of the macros used in ExcelTips. If the condition is true, then the program statements between the While and Wend keywords are executed. If the condition is not true, execution of the macro continues with the statement following the Wend keyword. If the conditions are true when Wend is encountered, the macro will loop back up to the While statement and keep executing the loop until the condition becomes false.
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (12425) applies to Microsoft Excel 2007, 2010, 2013, and 2016. You can find a version of this tip for the older menu interface of Excel here: Understanding the While...Wend Structure.
Excel Smarts for Beginners! Featuring the friendly and trusted For Dummies style, this popular guide shows beginners how to get up and running with Excel while also helping more experienced users get comfortable with the newest features. Check out Excel 2013 For Dummies today!
Macros can be used to change the formatting of your worksheet, if desired. One change you might want to make is to the ...
Discover MoreSometimes, when you upgrade to a new version of Excel, you could run into a problem recording macros that you had no ...
Discover MoreIf you need to consolidate a single column of data into multiple columns of data, you'll love this macro. It provides a ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2017-09-10 19:21:29
Craig S
Absolutely agree with Alex B - I've never used the "While ... Wend" construct in 15 years (or more) of VB6/VBA programming. I have a philosophical problem with it, in the first instance - it's so reminiscent of TRS-80 BASIC (never used it, but did see a lot of it, and it fills me with horror) that I can't bring myself to use it. But, more importantly, the "Do ... Loop" constructs are much more versatile, and also have a better syntactical link with the "For ... Next" construct.
2017-09-09 23:50:24
Alex B
In order not to send a less experienced vba programmer down the wrong path, I think the point should be made that the While/Wend loop is essentially obsolete and is there for backward compatibility. So it’s worth knowing in case you come across it but you wouldn’t use it when writing new code.
Most programmers would use the Do loop, which is more flexible, allows the following:-
Do While …..Loop
Do Until …..Loop
The following will run the code at least once since the test is at the end.
Do …..Loop While
Do …..Loop Until
Do support exiting the loop and this is not available in the While / Wend.
- Exit Do
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2021 Sharon Parq Associates, Inc.
Comments