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()
For lRow = Range(Cells(1, 5), Cells(Cells.Rows.Count, 5).End(xlUp)).Rows.Count To 1 Step -1
If Cells(lRow, 5).Value = "Standard" Then Cells(lRow, 5).EntireRow.Delete shift:=xlUp
Next
End Sub
Sub DeleteStandardRows()
Dim nRow As Long
With Intersect(ActiveSheet.UsedRange, Range("E:E"))
For nRow = .Rows.Count To 1 Step -1
If LCase(.Cells(nRow, 1)) = "standard" Then
.Cells(nRow, 1).EntireRow.Delete
nRow = nRow + 1
End If
Next nRow
End With
End Sub
For lRow = Cells(1, 5).End(xlDown).Row To 1 Step -1
Sub DeleteTabulationRows()
Dim nRow As Long
Application.ScreenUpdating = False
With Intersect(ActiveSheet.UsedRange, Range("A:A"))
For nRow = .Rows.Count To 1 Step -1
If InStr(LCase(.Cells(nRow, 1)), "tabulation") > 0 Then
.Cells(nRow, 1).EntireRow.Delete
nRow = nRow + 1
End If
Next nRow
End With
Application.ScreenUpdating = True
End Sub