0

I am using this macro by counting backwards to delete rows in a sheet based on a condition. I was wondering if it would be much faster to use Union instead somehow and delete only once?

Sub bs_erase()
Dim i As Long

With x_bs
    For i = 260 To 1 Step -1
        If Range("C" & i).Value2 = "-" Then
        Rows(i).Delete
        End If
    Next i
End With

End Sub
JoaMika
  • 1,727
  • 6
  • 32
  • 61

0 Answers0