Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub DeleteRows()
Dim LastRow As Long
Dim i As Long
LastRow = Cells(65536, 2).End(xlUp).Row
Application.ScreenUpdating = False
For i = LastRow To 2 Step -1
If Cells(i, 2).Value = "T" Then Cells(i, 2).EntireRow.Delete
Next i
Application.ScreenUpdating = True
End Sub