Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am trying to distribute a workbook which contains several sheets. The
input is entered in sheet1 and manipulated, reproduced and filled in other several sheets. However, I do not want my user to access other than sheet1 sheets in order to ensure not disturbing the design and formulas in other sheets. I want to hide these sheets print them while they are hidden. Please help |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi the sheets has to be visible to print them. Look at this:
Application.ScreenUpdating = False With Sheets("Sheet2") .Visible = True .PrintOut .Visible = False End With Application.ScreenUpdating = True Regards, Per "Ravi Kumar" skrev i meddelelsen ... I am trying to distribute a workbook which contains several sheets. The input is entered in sheet1 and manipulated, reproduced and filled in other several sheets. However, I do not want my user to access other than sheet1 sheets in order to ensure not disturbing the design and formulas in other sheets. I want to hide these sheets print them while they are hidden. Please help |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 --------------- Jacob Skaria "Ravi Kumar" wrote: I am trying to distribute a workbook which contains several sheets. The input is entered in sheet1 and manipulated, reproduced and filled in other several sheets. However, I do not want my user to access other than sheet1 sheets in order to ensure not disturbing the design and formulas in other sheets. I want to hide these sheets print them while they are hidden. Please help |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Printing Hiden Pages | Excel Discussion (Misc queries) | |||
various printing from a hiden sheet | Excel Programming | |||
various printing from a hiden sheet | Excel Programming | |||
various printing from a hiden sheet | Excel Programming | |||
hiden sheet | Excel Programming |