mizenerman
MIS
Hello,
Im trying to set up a worksheet to exclude blank rows when printing. This is what I'm running:
Private Sub Workbook_BeforePrint(Cancel As Boolean)
If ActiveSheet.Name = "Sheet1" Then
Cancel = True
Application.EnableEvents = False
Application.ScreenUpdating = False
With ActiveSheet
On Error Resume Next
.Columns("A").SpecialCells(xlCellTypeBlanks).EntireRow.Hidden = True
.PrintOut
.Columns("A").SpecialCells(xlCellTypeBlanks).EntireRow.Hidden = False
On Error GoTo 0
End With
Application.EnableEvents = True
Application.ScreenUpdating = True
End If
End Sub
From what I see all is correct but it's not working so it's obviously not correct. Can someone please point me in the right direction? PS. Don't want to use a macro unless absolutley necessary.
Thanks!!
Im trying to set up a worksheet to exclude blank rows when printing. This is what I'm running:
Private Sub Workbook_BeforePrint(Cancel As Boolean)
If ActiveSheet.Name = "Sheet1" Then
Cancel = True
Application.EnableEvents = False
Application.ScreenUpdating = False
With ActiveSheet
On Error Resume Next
.Columns("A").SpecialCells(xlCellTypeBlanks).EntireRow.Hidden = True
.PrintOut
.Columns("A").SpecialCells(xlCellTypeBlanks).EntireRow.Hidden = False
On Error GoTo 0
End With
Application.EnableEvents = True
Application.ScreenUpdating = True
End If
End Sub
From what I see all is correct but it's not working so it's obviously not correct. Can someone please point me in the right direction? PS. Don't want to use a macro unless absolutley necessary.
Thanks!!