This is a continuation of this question. Read all the Forum Rules and you will see that you should not start another question on the same subject.
There is no code in your workbook, so how can we check it?
You didn't say anything about having hidden sheets either
Option Explicit
Sub delBlankRows()
Dim ws As Worksheet
Dim rng As Range
For Each ws In ThisWorkbook.Worksheets
If ws.Visible = xlSheetVisible Then
On Error Resume Next
Set rng = Range(Cells(4, 2), Cells(Rows.Count, _
2).End(xlUp)).SpecialCells(xlCellTypeBlanks)
rng.EntireRow.Delete
End If
Next ws
On Error GoTo 0
End Sub
Bookmarks