Printing a hiden excel sheet

  • Thread starter Thread starter Ravi Kumar
  • Start date Start date
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
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top