Multiple Loops in Excel Vba
In this article, we are going to learn how to use multiple loops in VBA. Two commonly used loops in VBA are the For loop and the For Each loop. We are going to use the For Next Loop first.
Adding command button
To add a command button click on “Insert” and then select “Command Button” from ActiveX group.
Create a command button.
Write click on the command button and Select “View Code”.
Nesting Vba Loops
Write this line of code. After writing the code, close the window by clicking on the red X button on the top left of the screen.
Private Sub CommandButton1_Click()
Dim i As Integer, j As Integer
For i=1 To 6
For j=1 To 2
Cells (i, j).Value=100
Next j
Next i
End Sub
Click on the command button to see this result.
This is how to implement two for loops using Excel VBA.
Leave a Reply