I am trying to loop through three lists of data and hide the rows that have a total value of 0. Although I keep getting A "Loop Without Do" error, can someone spot what I have done wrong.
Cheers.
Sub Button1_Click()
Dim Brow1 As Integer
Dim Brow2 As Integer
Dim Brow3 As Integer
Dim Trow1 As Integer
Dim Trow2 As Integer
Dim Trow3 As Integer
Brow1 = 62
Trow1 = 3
Brow2 = 126
Trow2 = 67
Brow3 = 190
Trow3 = 131
Do While Brow1 > Trow1
If Range("P" & Brow1).Value = 0 Then
Rows(Brow1).EntireRow.Hidden = True
ElseIf Range("P" & Brow1).Value <> 0 Then
Brow1 = Brow1 - 1
Loop
Do While Brow2 > Trow2
If Range("P" & Brow2).Value = 0 Then
Rows(Brow2).EntireRow.Hidden = True
ElseIf Range("P" & Brow2).Value <> 0 Then
Brow2 = Brow2 - 1
Loop
Do While Brow3 > Trow3
If Range("P" & Brow3).Value = 0 Then
Rows(Brow3).EntireRow.Hidden = True
ElseIf Range("P" & Brow3).Value <> 0 Then
Brow3 = Brow3 - 1
Loop
End Sub
None of your If statements are closed appropriately. Add an "End If" after each "ElseIF" and you should get your expected behavior: