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.
dim bZero as boolean
...
bZero = True
for iCol = 1 to 7
if cells(thisrow, iCol).value <> 0 then
bZero = False
exit for
end if
next
if bZero then cells(thisrow, 1).entirerow.delete
...
Sub a()
Dim lRow As Long
For lRow = Range("A65536").End(xlUp).Row To 1 Step -1
If WorksheetFunction.CountIf(Range(Cells(lRow, "L"), _
Cells(lRow, "R")), 0) = 7 Then
Rows(lRow).EntireRow.Delete
End If
Next
End Sub