Printing a hiden excel sheet

R

Ravi Kumar

I have a template that i do not want user to disturb it. I would like to
allow the user the input the information from a sheet, manipulate it in
hidden sheet and print the already designed output i.e., hidden sheet on to
printer without giving access to the user who may disturb the design and
formulas in the out put sheet. So I want to print a sheet which is hidden
please help
 
J

Jacob Skaria

Application.ScreenUpdating = False
ActiveWorkbook.Sheets(2).visible = false

ActiveWorkbook.sheets(2).PrintOut

ActiveWorkbook.Sheets(2).visible = True
Application.ScreenUpdating = True


If this post helps click Yes
 
Top