Hi, thanks VoG for the following print function
With this print function I want print the hidden columns, I have B to F and D:F are hidden, how do I hit the print button and then print B:F even thought they are hidden? Thanks
Code:
Private Sub CommandButton2_Click()
With ActiveSheet
.PageSetup.PrintArea = "B3:F120"
.PrintOut
End With
End Sub
With this print function I want print the hidden columns, I have B to F and D:F are hidden, how do I hit the print button and then print B:F even thought they are hidden? Thanks