Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 921
Default Security/Protection/Hiding WorkSheets

My workbook contains 7 sheets.

I would like only one sheet to be visible to users, which they will use to
enter info (one cell from data validation list) which will then display
results.

Suggestions Please?

thanks!
--
Jeff
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Security/Protection/Hiding WorkSheets

On Dec 18, 8:42*am, Jeff wrote:
My workbook contains 7 sheets.

I would like only one sheet to be visible to users, which they will use to
enter info (one cell from data validation list) which will then display
results.

Suggestions Please?

thanks!
--
Jeff


Jeff,
One possible solution: right click on any tab and pick "view code";
that will open Microsoft Visual Basic window. on the upper left side
you'll see your sheets listed under "VBAProject\Microsoft Excel
Objects". Left click on any of the those listed sheets; on the lower
left part of the window, (Properties Sheet) on the bottom line you'll
see "Visible". Pull down the menu next to "visible" and select "0" or
"2" for "hidden" or "veryhidden" respectively. repeat that for all
the sheets you want to hide. Then close out visual basic and your
sheets should be hidden.
Hope that works as you need
-JoelS
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 791
Default Security/Protection/Hiding WorkSheets

Modify this to suit your needs; this will hide all sheets except Sheet1:

Sub hideme()

Dim wk As Worksheet
For Each wk In Worksheets
If wk.Name < "Sheet1" Then
wk.Visible = False
End If
Next wk

End Sub

--
If this posting was helpful, please click on the Yes button.
Regards,

Michael Arch.




"Jeff" wrote:

My workbook contains 7 sheets.

I would like only one sheet to be visible to users, which they will use to
enter info (one cell from data validation list) which will then display
results.

Suggestions Please?

thanks!
--
Jeff

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 921
Default Security/Protection/Hiding WorkSheets

Thanks guys!
--
Jeff


"Michael" wrote:

Modify this to suit your needs; this will hide all sheets except Sheet1:

Sub hideme()

Dim wk As Worksheet
For Each wk In Worksheets
If wk.Name < "Sheet1" Then
wk.Visible = False
End If
Next wk

End Sub

--
If this posting was helpful, please click on the Yes button.
Regards,

Michael Arch.




"Jeff" wrote:

My workbook contains 7 sheets.

I would like only one sheet to be visible to users, which they will use to
enter info (one cell from data validation list) which will then display
results.

Suggestions Please?

thanks!
--
Jeff

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Worksheet Protection / Security from Viewing MRH Excel Worksheet Functions 1 July 13th 07 12:31 AM
Worksheet Security/Cell Protection MLK Excel Worksheet Functions 2 March 8th 07 10:47 AM
Page Protection interfering with Hiding Rows [email protected] Excel Worksheet Functions 3 August 3rd 06 02:38 PM
protection - hiding worksheets confused Excel Worksheet Functions 5 June 20th 06 12:13 PM
Protection and Hiding Sheets JudithJubilee Excel Discussion (Misc queries) 4 March 4th 05 02:16 PM


All times are GMT +1. The time now is 06:40 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"