Open In App

How to Use For Next Loop in Excel VBA?

Last Updated: 13 Jun, 2022

S

Summarize
Comments
Improve
Suggest changes
Like Article
Like
Share
Report
News Follow

If you are familiar with the programming you must have an idea of what a loop is, In computer programming, a loop is a sequence of statements that are repeated until a specific condition is satisfied.

In Excel VBA the “For Next” loop is used to go through a block of code a specific number of times.

Syntax:

 For counter = start to end [step count]

statement 1
statement 2
statement 3
.
.
statement n
Next [counter]

Here we can use the counter or any other variable to run them as many times as we need. 

Example: 

When you are displaying numbers from 1 to 10 you may want to set the value of a variable to 1 and display it 10 times, increasing its value by 1 on each loop iteration. The same logic is used in VBA.

We specify how many times we have to run the loop, and then specify what code should our loop execute each time the loop runs.

A loop has 3 parts the first one is an initialization, the second is the condition under which the loop runs, and the last is increment or decrement.

The flow of the control in for loop:

  • The For step is executed first. This step allows you to initialize any loop control variables and increment the step counter variable.
  • Then the second step is, the condition is evaluated. If it is true, the body of the loop is executed. If it is false, the body of the loop does not execute and the flow of control jumps to the next statement, just after the For Loop.
  • After the body of the For loop executes, the flow of control jumps to the next statement. This statement allows you to update any loop control variables. .the value is updated as the value we write in the count.
  • The condition is evaluated again it continues till the condition becomes false.

Flow Diagram

Now let us look at an example to understand how the for loop works. Follow the below steps to work along with this article:

Step 1: Press Alt + F11 to open the VBA(visual basic editor where we can write the code).

Step 2: Right-click on the workbook name and then insert a module.

Note: The interface of Excel may change depending upon your version.

STEP 3: Once a module is inserted we can write our code. Let's say we are writing code of print sum  of first 10 numbers so our code will be as follows:

Sub Sumnumbers()
Dim Total as Integer
Dim Count as Integer  
Total = 0                   //initialised total as 0
For count = 1 to 10 // 
Total = Total + count //
Next count //increments counter N = N + 1
MsgBox Total //prints total sum 
End Sub   // code ended

So, what's happening in the above code:

  • Here in the first line, we write the subject of code this is mostly a point where our code starts sub is also important as it breaks large pieces of code in small parts.
  • As we use to declare in our normal programming we declare two integers the first one is total where we will store the sum and the other is count to count n variables in a loop
  • The "for next" loop starts here from count =1 and will run till the count is equal to 10.
  • Then we will evaluate the total count by adding the count to the total:
Total = Total + count
  • Then we increment the counter by 1 and repeat the above operations till the count is 10.
  • At the end of the loop, we will show the output using a message box.
  • Finally, we will end the subject.

Output:

55

Example 2: Printing product of odd +ve integers till 10

Sub ProductNumber()
Dim Product as Integer
Dim Total as Integer
Product = 1
For Count 1 to 10 Step 2   // when we use step 2 it tells compiler to increment
                           // count  by +2 such as 1,3,5,7,..
Product = Product * count
Next Count
Msgbox Product
End Sub

Output:

12150


S

News
Improve
Discuss
Do you want to advertise with us?Click here to know more

VBA Subroutine in Excel - How to Call Sub in VBA?

article_img
When a specified action is performed on a worksheet with the help of a collection of code known as a VBA Subroutine. It also helps to read an external file, also it can open other applications from Excel. A large piece of code can be broken into small parts so that we can manage it easily. Let's learn why to use submarines: Converts large piece of codes into small parts so that the computer ignores all kind of complexities that arises because of large codesReusability of code suppose we in a program have to access the database frequently so instead of writing the code again and again we can create a function to access the databaseSubroutines are self-documenting functions which means a coder can easily say what the program does by looking into the name of the function Naming Rules of SubroutinesIt can start with a letter or an underscore but it cannot start with a number or a special character.It cannot contain any space in the name.The name of the subroutine cannot be a keyword like Private, Sub, End, etc. Syntax Private Sub function_name( ByVal arg1 As String, ByVal arg2 As String) End Sub Syntax Explanation Code Action "Private Sub function_name(...)"Private is the keyword whic
Read More

A

How to Use for Each Loop in Excel VBA?

A For Each loop is used to execute a statement or a set of statements for each element in an array or collection. Syntax: For Each element In group [ statements ] [ Exit For ] [ statements ] Next [ element ] The For...Each...Next statement syntax has the following three parts: PartDescriptionelement Required (Must be mentioned). Variable is used to iterate through the elements of the collection or array. For collections, the element can only be a Variant variable, a generic object variable, or any specific object variable. For arrays, the element can only be a Variant variable.groupRequired(Must be mentioned). Name of an object collection or array (except an array of user-defined types).statementOptional (May or may not be mentioned). One or more statements are executed on each item in the group. There are 4 basic steps to writing a For Each Next Loop in VBA: Declare a variable.Write the For Each Line with the variable and collection references.Add line(s) of code to repeat for each item in the collection.Write the Next line to terminate the loop. The For…Each block is entered if there is at least one element in the group. Upon entering the loop,
Read More

A

How to Use Do While Loop in Excel VBA?

article_img
A Do…While loop is used when we want to repeat certain set of statements as long as the condition is true. The condition may be checked at the starting or at the end of the loop Flowchart: Uses of Do-While loop: The Do While loop is used in two ways: Do…while loop which checks the condition at the STARTING of the loop.Do…while loop which checks the condition at the END of the loop. Syntax 1: Do While condition [statements] [Exit Do] [statements] Loop Syntax 2: Do While [statements] [Exit Do] [statements] Loop conditionImplementing a Do While loop: Follow the below steps to implement a Do-While loop: Step 1: Define a Macro Private Sub Demo_Loop() End Sub Step 2: Define variables j=2 i=1 Step 3: Write Do While Loop. You can write condition at the beginning or at the end Do While i < 5 Step 4: Write statements to be executed in loop msgbox "Table of 2 is : " & (j*i) i=i+1 Step 5: End loop. Now let's take a look at some of the examples. Example 1: Do…while loop which checks the condition at the STARTING of the loop. The below example uses Do…while loop to check the condition at the starting of the loop. The statements inside the loop are executed, only if the condition is True
Read More

How to use While Wend Loop in Excel VBA?

article_img
In this article, we are going to see about While Wend loop in Excel VBA using a suitable example. Implementation : In the Microsoft Excel tabs, select the Developer Tab. Initially, the Developer Tab may not be available. The Developer Tab can be enabled easily by a two-step process : Right-click on any of the existing tabs in the top of the Excel window.Now select Customize the Ribbon from the pop-down menu.In the Excel Options Box, check the box Developer to enable it and click on OK. Now, the Developer Tab is visible. Now click on the Visual Basic option in the Developer tab and make a new module to write the program using the Select Case statement. Developer -> Visual Basic -> Tools -> MacrosNow create a Macro and give any suitable name. This will open the Editor window where can write the code. While Wend Loop In a while loop all the statements will execute inside the loop until the provided condition becomes FALSE. The loop terminates only when the condition becomes FALSE. In Excel the keyword While is used to start the while loop and Wend is used to end the while loop. 1. The statements inside the while loop execute when the condition is TRUE. 2. When the condition
Read More

How to use Do Until Loop in Excel VBA?

article_img
In this article, we are going to see look into the Do Until loop in Excel VBA using a suitable example. Implementation : In the Microsoft Excel tabs, select the Developer Tab. Initially, the Developer Tab may not be available. The Developer Tab can be enabled easily by a two-step process : Right-click on any of the existing tabs in the top of the Excel window.Now select Customize the Ribbon from the pop-down menu. In the Excel Options Box, check the box Developer to enable it and click on OK. Now, the Developer Tab is visible. Now click on the Visual Basic option in the Developer tab and make a new module to write the program using the Select Case statement. Developer -> Visual Basic -> Tools -> MacrosNow create a Macro and give any suitable name. This will open the Editor window where can write the code. Do Until Loop In Do Until loop the condition is checked. The statements inside the loop are executed when the condition becomes FALSE. When the condition becomes TRUE, the loop terminates. In the case of a Do Until we can write the condition either in the beginning or at the end. There are two possible syntaxes in the case of Do Until Loop. The keyword Do is used to perf
Read More

How to Use Select Case Statement in Excel VBA?

article_img
VBA in Excel stands for Visual Basic for Applications which is Microsoft's programming language. To optimize the performance and reduce the time in Excel we need Macros and VBA is the tool used in the backend. In this article, we are going to discuss how to use Select Case Statement in Excel VBA. Select Case Statement of Excel VBA The select case in VBA is like a detective that investigates an expression by checking it against different scenarios listed as Case Statements, each with its own conditions. When a scenario matches the expression, it's like solving a piece of the puzzle, and the corresponding code linked to that scenario is activated. Importantly, once a match is found, the detective stops investigating and moves on to executing the discovered code. Yet, if none of the scenarios match, it's like the detective hitting a dead end. In this situation, the code associated with the Case Else statement comes into play, offering a default solution or outcome. Syntax of the Select Case Statement of Excel VBAThe VBA Select Case Statement shares similarities with the Switch Case construct found in programming languages such as Java, C#, and PHP. In Excel VBA, this statement helps
Read More

How to Use the VBA Immediate Window in Excel?

article_img
The immediate window is similar to the console in Chrome, where we could execute the javascript. The immediate window allows us to execute macro code very fast and efficiently. Once, you learned it, you will always be found using it. Your immediate window can answer an infinite number of questions, like setting a cell value, changing the sheet of the name, counting the number of sheets, finding the active cell of the current worksheet, etc. In this article, we will learn different ways to use the immediate Windows in excel. Opening Immediate Window By default, the immediate window does not appear in the visual basic editor, but, could be activated by following these steps: Step 1: Go to the developer tab, under the Code section. Click on Visual Basic(Alt + F11). Step 2: VBA editor is opened. Click on View, in the menu bar. Select Immediate Window. Step 3: The Immediate window(Ctrl + G), is opened in the VBA editor. Different Ways to Use Immediate Window There can be a huge number of cases where you could use immediate windows which can make your work faster and easy. An immediate window can run a macro, set variable values, debug, ask different questions using (?), and ma
Read More

How to use If-Else Statement in Excel VBA?

article_img
VBA in Excel stands for Visual Basic for Applications which is Microsoft's programming language. To optimize the performance and reduce the time in Excel we need Macros and VBA is the tool used in the backend. In this article, we are going to learn how to use the If Else statement in Excel VBA. Implementation : In the Microsoft Excel tabs, select the Developer Tab. Initially, the Developer Tab may not be available. The Developer Tab can be enabled easily by a two-step process : Right-click on any of the existing tabs at the top of the Excel window.Now select Customize the Ribbon from the pop-down menu.In the Excel Options Box, check the box Developer to enable it and click on OK. Now, the Developer Tab is visible. Now click on the Visual Basic option in the Developer tab and make a new module to write the program using the Select Case statement. Developer -> Visual Basic -> Tools -> MacrosNow create a Macro and give any suitable name. This will open the Editor window where can write the code. IF Statement : The syntax for the If-Else statement in Excel is : If condition/expression Then Code Block for True Else Code Block for False End If Flow Diagram : Example: Suppose a
Read More

How to use If-Else-If Statement in Excel VBA?

article_img
In this article, we are going to look into how to use the If Else If statement in Excel VBA using a suitable example. Implementation : In the Microsoft Excel tabs, select the Developer Tab. Initially, the Developer Tab may not be available. The Developer Tab can be enabled easily by a two-step process : Right-click on any of the existing tabs at the top of the Excel window.Now select Customize the Ribbon from the pop-down menu.In the Excel Options Box, check the box Developer to enable it and click on OK.Now, the Developer Tab is visible. Now click on the Visual Basic option in the Developer tab and make a new module to write the program using the Select Case statement. Developer -> Visual Basic -> Tools -> MacrosNow create a Macro and give any suitable name.This will open the Editor window where can write the code.IF ELSE IF statement The syntax is : If condition1/expression1 Then Code Block 1 Else If condition2/expression2 Then Code Block 2 Else Code Block 3 End If In this initially, the If condition is executed and if it is TRUE then the code block 1 will execute and the program terminates. Now, if condition 1 becomes FALSE then condition 2 inside Else IF will work,
Read More

How to Use the VBA Editor in Excel: Quick Guide 2024

article_img
Unlock the full potential of Microsoft Excel by diving into the world of Visual Basic for Applications (VBA). The VBA Editor in Excel is a powerful tool that allows you to automate tasks, create custom functions, and streamline your workflow like never before. Whether you're looking to boost productivity, develop advanced macros, or enhance your data analysis capabilities, learning how to use the VBA Editor in Excel is essential. In this guide, we’ll walk you through the steps of how to view and run VBA code in Excel, providing you with the skills needed to transform your Excel experience. By learning the VBA Editor, you can save time, reduce errors, and gain a competitive edge in the workplace. Let's explore how to harness the power of VBA to make your Excel tasks more efficient and effective.Table of ContentWhat is Visual Basic Editor in ExcelHow to Enable the Developer Tab in Excel Visual Basic Editor User InterfaceHow to Open Visual Basic Editor in ExcelModuleHow to Open Visual Basic Editor in ExcelHow to Delete a Module in VBA Excel How to Export a VBA module from ExcelHow to Run Macro in VBA Excel How to Debug a Macro in ExcelHow to Open VBA editor on Microsoft Excel for MacW
Read More
three90RightbarBannerImg