I have created the following loop but it takes to long to run. Any suggestions on how to change it? I would be very grateful. New at this and self taught.
Code:
Range("F2").Select
Do While Not IsEmpty(ActiveCell.Offset(0, -5))
If Selection = "FIELD SERVICE" Then
With Selection
.EntireRow.Delete
End With
ElseIf ActiveCell.Interior.Color = 10066431 Then
With Selection
.EntireRow.Delete
End With
ElseIf Selection = "INTERNAL" Then
With Selection
.EntireRow.Delete
End With
ElseIf ActiveCell.Select <> "FIELD SERVICE" Then
ActiveCell.Offset(1, 0).Select
End If
Loop