How can I print a worksheet excluding blank rows?

  • Thread starter Thread starter Guest
  • Start date Start date
I would suggest this (based on Don's hideem):

Sub show_em()
Columns(1).SpecialCells(xlCellTypeBlanks).EntireRow.Hidden = False
End Sub

Hope this helps.

Pete
 
Thanks - you and Don were a huge help!

Pete_UK said:
I would suggest this (based on Don's hideem):

Sub show_em()
Columns(1).SpecialCells(xlCellTypeBlanks).EntireRow.Hidden = False
End Sub

Hope this helps.

Pete
 
Back
Top