Sub DeleteRowWithAliveWellCheck()
'========================================================================
' DELETES ALL ROWS FROM [COLOR="#FF0000"]A2[/COLOR] DOWNWARDS WITH THE WORDs "Alive Well" IN COLUMN W
'========================================================================
Application.ScreenUpdating = False
Last = Cells(Rows.Count, "W").End(xlUp).Row
For AC = Last To [COLOR="#FF0000"]2[/COLOR] Step -1
If (Cells(AC, "W").Value) = "Alive Well" Then
'Cells(AC, "W").EntireRow.ClearContents ' USE THIS TO CLEAR CONTENTS BUT NOT DELETE ROW
Cells(AC, "W").EntireRow.Delete
End If
Next AC
Application.ScreenUpdating = True
End Sub