#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 119
Default hidden worksheet

hi community

can anybody guide this....

when i open a workbook, there is only 1 sheet1 display with data.
and
clicking on, example, a cell and use the Trace Dependent tool, the selected
cell has an Arrow pointing to it. The other cell with the pointer, had a
small icon (squarish shape with gridline & the arrow line is black color with
dash style & at the bottom right side, there is a small black dot)
and
i use the Formula display option, the selected cell has a formula indicating
the data was from sheet2.
however, i tried using the Format Sheet to display the sheet2, but the
command was dimmed.

is it that Sheet2 was hidden and how do i display out the hidden sheet2 ?

the workbook seems not using Macro because i went to the Macro and check,
there is nothing in the Macro dialog box??

hope my explaination is clear

thanks community for the assistance

:)



--
oldLearner57
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 70
Default hidden worksheet

Check If the Worksheet is Protected. . You will need a password to unprotect it
Tools - Protection - unprotect sheets


"oldLearner57" wrote:

hi community

can anybody guide this....

when i open a workbook, there is only 1 sheet1 display with data.
and
clicking on, example, a cell and use the Trace Dependent tool, the selected
cell has an Arrow pointing to it. The other cell with the pointer, had a
small icon (squarish shape with gridline & the arrow line is black color with
dash style & at the bottom right side, there is a small black dot)
and
i use the Formula display option, the selected cell has a formula indicating
the data was from sheet2.
however, i tried using the Format Sheet to display the sheet2, but the
command was dimmed.

is it that Sheet2 was hidden and how do i display out the hidden sheet2 ?

the workbook seems not using Macro because i went to the Macro and check,
there is nothing in the Macro dialog box??

hope my explaination is clear

thanks community for the assistance

:)



--
oldLearner57

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 119
Default hidden worksheet

thanks claude jerry for the infor :)

thanks community as well :)
--
oldLearner57


"claude jerry" wrote:

Check If the Worksheet is Protected. . You will need a password to unprotect it
Tools - Protection - unprotect sheets


"oldLearner57" wrote:

hi community

can anybody guide this....

when i open a workbook, there is only 1 sheet1 display with data.
and
clicking on, example, a cell and use the Trace Dependent tool, the selected
cell has an Arrow pointing to it. The other cell with the pointer, had a
small icon (squarish shape with gridline & the arrow line is black color with
dash style & at the bottom right side, there is a small black dot)
and
i use the Formula display option, the selected cell has a formula indicating
the data was from sheet2.
however, i tried using the Format Sheet to display the sheet2, but the
command was dimmed.

is it that Sheet2 was hidden and how do i display out the hidden sheet2 ?

the workbook seems not using Macro because i went to the Macro and check,
there is nothing in the Macro dialog box??

hope my explaination is clear

thanks community for the assistance

:)



--
oldLearner57

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default hidden worksheet

TheFormatSheetUnhide will become available if you remove Workbook Protection
from ToolsProtectionUnprotect Workbook.

That's workbook.................not worksheet.


Gord Dibben MS Excel MVP

On Fri, 6 Jul 2007 22:06:01 -0700, oldLearner57
wrote:

hi community

can anybody guide this....

when i open a workbook, there is only 1 sheet1 display with data.
and
clicking on, example, a cell and use the Trace Dependent tool, the selected
cell has an Arrow pointing to it. The other cell with the pointer, had a
small icon (squarish shape with gridline & the arrow line is black color with
dash style & at the bottom right side, there is a small black dot)
and
i use the Formula display option, the selected cell has a formula indicating
the data was from sheet2.
however, i tried using the Format Sheet to display the sheet2, but the
command was dimmed.

is it that Sheet2 was hidden and how do i display out the hidden sheet2 ?

the workbook seems not using Macro because i went to the Macro and check,
there is nothing in the Macro dialog box??

hope my explaination is clear

thanks community for the assistance

:)




  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,365
Default hidden worksheet

There's one more option - and as Don mentioned, perhaps you're not intended
to see the sheet and may be better off leaving it alone. But for the daring
soul:

Press [Alt]+[F11] to enter the VB Editor. Choose Insert | Module from the
VBE menu. Copy and paste this code into it:

Sub MakeVeryHiddenJustHidden()
Dim anySheet As Worksheet
For Each anySheet In Worksheets
If anySheet.Visible = xlSheetVeryHidden Then
anySheet.Visible = xlSheetHidden
End If
Next
End Sub

Sub MakeJustHiddenVeryHidden()
Dim anySheet As Worksheet
For Each anySheet In Worksheets
If anySheet.Visible = xlSheetHidden Then
anySheet.Visible = xlSheetVeryHidden
End If
Next
End Sub

Now those 2 macros will be visible in your Tools | Macro | Macros list.
First run the MakeVeryHiddenJustHidden macro. This will turn very hidden
sheets into hidden, but available to be made visible from the Format | Sheets
menu. You can then use that to unhide and look (but not touch?) them.

To reverse the process, take the sheets that you unhid, and put them back
into hidden state and run the MakeJustHiddenVeryHidden macro.

We could have gone from VeryHidden to visible in just one step, but this way
you are forced to acknowledge that you really want to muck around with what
you maybe should not. Also, it would be best to only unhide any hidden ones
one at a time so you can remember which to hide and make totally invisible
again easily.

Your results if the workbook/very hidden worksheets have passwords applied
may vary.


"oldLearner57" wrote:

hi community

can anybody guide this....

when i open a workbook, there is only 1 sheet1 display with data.
and
clicking on, example, a cell and use the Trace Dependent tool, the selected
cell has an Arrow pointing to it. The other cell with the pointer, had a
small icon (squarish shape with gridline & the arrow line is black color with
dash style & at the bottom right side, there is a small black dot)
and
i use the Formula display option, the selected cell has a formula indicating
the data was from sheet2.
however, i tried using the Format Sheet to display the sheet2, but the
command was dimmed.

is it that Sheet2 was hidden and how do i display out the hidden sheet2 ?

the workbook seems not using Macro because i went to the Macro and check,
there is nothing in the Macro dialog box??

hope my explaination is clear

thanks community for the assistance

:)



--
oldLearner57

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,124
Default hidden worksheet

If he is not intended why are you helping him???

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"JLatham" <HelpFrom @ Jlathamsite.com.(removethis) wrote in message
...
There's one more option - and as Don mentioned, perhaps you're not
intended
to see the sheet and may be better off leaving it alone. But for the
daring
soul:

Press [Alt]+[F11] to enter the VB Editor. Choose Insert | Module from the
VBE menu. Copy and paste this code into it:

Sub MakeVeryHiddenJustHidden()
Dim anySheet As Worksheet
For Each anySheet In Worksheets
If anySheet.Visible = xlSheetVeryHidden Then
anySheet.Visible = xlSheetHidden
End If
Next
End Sub

Sub MakeJustHiddenVeryHidden()
Dim anySheet As Worksheet
For Each anySheet In Worksheets
If anySheet.Visible = xlSheetHidden Then
anySheet.Visible = xlSheetVeryHidden
End If
Next
End Sub

Now those 2 macros will be visible in your Tools | Macro | Macros list.
First run the MakeVeryHiddenJustHidden macro. This will turn very hidden
sheets into hidden, but available to be made visible from the Format |
Sheets
menu. You can then use that to unhide and look (but not touch?) them.

To reverse the process, take the sheets that you unhid, and put them back
into hidden state and run the MakeJustHiddenVeryHidden macro.

We could have gone from VeryHidden to visible in just one step, but this
way
you are forced to acknowledge that you really want to muck around with
what
you maybe should not. Also, it would be best to only unhide any hidden
ones
one at a time so you can remember which to hide and make totally invisible
again easily.

Your results if the workbook/very hidden worksheets have passwords applied
may vary.


"oldLearner57" wrote:

hi community

can anybody guide this....

when i open a workbook, there is only 1 sheet1 display with data.
and
clicking on, example, a cell and use the Trace Dependent tool, the
selected
cell has an Arrow pointing to it. The other cell with the pointer, had a
small icon (squarish shape with gridline & the arrow line is black color
with
dash style & at the bottom right side, there is a small black dot)
and
i use the Formula display option, the selected cell has a formula
indicating
the data was from sheet2.
however, i tried using the Format Sheet to display the sheet2, but
the
command was dimmed.

is it that Sheet2 was hidden and how do i display out the hidden sheet2 ?

the workbook seems not using Macro because i went to the Macro and check,
there is nothing in the Macro dialog box??

hope my explaination is clear

thanks community for the assistance

:)



--
oldLearner57


  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,365
Default hidden worksheet

I figure he's a big boy and can fend for himself should he knowingly walk
into a marked mine-field. Such ventures can be teaching/learning experiences
to some.

No worse, in my view, of pointing out places to obtain password
revealing/cracking tools for Excel workbooks/worksheets.

"Don Guillett" wrote:

If he is not intended why are you helping him???

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"JLatham" <HelpFrom @ Jlathamsite.com.(removethis) wrote in message
...
There's one more option - and as Don mentioned, perhaps you're not
intended
to see the sheet and may be better off leaving it alone. But for the
daring
soul:

Press [Alt]+[F11] to enter the VB Editor. Choose Insert | Module from the
VBE menu. Copy and paste this code into it:

Sub MakeVeryHiddenJustHidden()
Dim anySheet As Worksheet
For Each anySheet In Worksheets
If anySheet.Visible = xlSheetVeryHidden Then
anySheet.Visible = xlSheetHidden
End If
Next
End Sub

Sub MakeJustHiddenVeryHidden()
Dim anySheet As Worksheet
For Each anySheet In Worksheets
If anySheet.Visible = xlSheetHidden Then
anySheet.Visible = xlSheetVeryHidden
End If
Next
End Sub

Now those 2 macros will be visible in your Tools | Macro | Macros list.
First run the MakeVeryHiddenJustHidden macro. This will turn very hidden
sheets into hidden, but available to be made visible from the Format |
Sheets
menu. You can then use that to unhide and look (but not touch?) them.

To reverse the process, take the sheets that you unhid, and put them back
into hidden state and run the MakeJustHiddenVeryHidden macro.

We could have gone from VeryHidden to visible in just one step, but this
way
you are forced to acknowledge that you really want to muck around with
what
you maybe should not. Also, it would be best to only unhide any hidden
ones
one at a time so you can remember which to hide and make totally invisible
again easily.

Your results if the workbook/very hidden worksheets have passwords applied
may vary.


"oldLearner57" wrote:

hi community

can anybody guide this....

when i open a workbook, there is only 1 sheet1 display with data.
and
clicking on, example, a cell and use the Trace Dependent tool, the
selected
cell has an Arrow pointing to it. The other cell with the pointer, had a
small icon (squarish shape with gridline & the arrow line is black color
with
dash style & at the bottom right side, there is a small black dot)
and
i use the Formula display option, the selected cell has a formula
indicating
the data was from sheet2.
however, i tried using the Format Sheet to display the sheet2, but
the
command was dimmed.

is it that Sheet2 was hidden and how do i display out the hidden sheet2 ?

the workbook seems not using Macro because i went to the Macro and check,
there is nothing in the Macro dialog box??

hope my explaination is clear

thanks community for the assistance

:)



--
oldLearner57



  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,124
Default hidden worksheet

I don't give out that info either.
Thanks for the congrats on MVP. It is appreciated.

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"JLatham" <HelpFrom @ Jlathamsite.com.(removethis) wrote in message
...
I figure he's a big boy and can fend for himself should he knowingly walk
into a marked mine-field. Such ventures can be teaching/learning
experiences
to some.

No worse, in my view, of pointing out places to obtain password
revealing/cracking tools for Excel workbooks/worksheets.

"Don Guillett" wrote:

If he is not intended why are you helping him???

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"JLatham" <HelpFrom @ Jlathamsite.com.(removethis) wrote in message
...
There's one more option - and as Don mentioned, perhaps you're not
intended
to see the sheet and may be better off leaving it alone. But for the
daring
soul:

Press [Alt]+[F11] to enter the VB Editor. Choose Insert | Module from
the
VBE menu. Copy and paste this code into it:

Sub MakeVeryHiddenJustHidden()
Dim anySheet As Worksheet
For Each anySheet In Worksheets
If anySheet.Visible = xlSheetVeryHidden Then
anySheet.Visible = xlSheetHidden
End If
Next
End Sub

Sub MakeJustHiddenVeryHidden()
Dim anySheet As Worksheet
For Each anySheet In Worksheets
If anySheet.Visible = xlSheetHidden Then
anySheet.Visible = xlSheetVeryHidden
End If
Next
End Sub

Now those 2 macros will be visible in your Tools | Macro | Macros list.
First run the MakeVeryHiddenJustHidden macro. This will turn very
hidden
sheets into hidden, but available to be made visible from the Format |
Sheets
menu. You can then use that to unhide and look (but not touch?) them.

To reverse the process, take the sheets that you unhid, and put them
back
into hidden state and run the MakeJustHiddenVeryHidden macro.

We could have gone from VeryHidden to visible in just one step, but
this
way
you are forced to acknowledge that you really want to muck around with
what
you maybe should not. Also, it would be best to only unhide any hidden
ones
one at a time so you can remember which to hide and make totally
invisible
again easily.

Your results if the workbook/very hidden worksheets have passwords
applied
may vary.


"oldLearner57" wrote:

hi community

can anybody guide this....

when i open a workbook, there is only 1 sheet1 display with data.
and
clicking on, example, a cell and use the Trace Dependent tool, the
selected
cell has an Arrow pointing to it. The other cell with the pointer,
had a
small icon (squarish shape with gridline & the arrow line is black
color
with
dash style & at the bottom right side, there is a small black dot)
and
i use the Formula display option, the selected cell has a formula
indicating
the data was from sheet2.
however, i tried using the Format Sheet to display the sheet2, but
the
command was dimmed.

is it that Sheet2 was hidden and how do i display out the hidden
sheet2 ?

the workbook seems not using Macro because i went to the Macro and
check,
there is nothing in the Macro dialog box??

hope my explaination is clear

thanks community for the assistance

:)



--
oldLearner57




  #10   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 119
Default hidden worksheet

thanks :) Don Guillett for the guidance given and rest assure that the
request for "how to display the hidden" sheet is merely a tutorial project
and has no ill intention :)

thanks community as well :)
--
oldLearner57


"Don Guillett" wrote:

I don't give out that info either.
Thanks for the congrats on MVP. It is appreciated.

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"JLatham" <HelpFrom @ Jlathamsite.com.(removethis) wrote in message
...
I figure he's a big boy and can fend for himself should he knowingly walk
into a marked mine-field. Such ventures can be teaching/learning
experiences
to some.

No worse, in my view, of pointing out places to obtain password
revealing/cracking tools for Excel workbooks/worksheets.

"Don Guillett" wrote:

If he is not intended why are you helping him???

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"JLatham" <HelpFrom @ Jlathamsite.com.(removethis) wrote in message
...
There's one more option - and as Don mentioned, perhaps you're not
intended
to see the sheet and may be better off leaving it alone. But for the
daring
soul:

Press [Alt]+[F11] to enter the VB Editor. Choose Insert | Module from
the
VBE menu. Copy and paste this code into it:

Sub MakeVeryHiddenJustHidden()
Dim anySheet As Worksheet
For Each anySheet In Worksheets
If anySheet.Visible = xlSheetVeryHidden Then
anySheet.Visible = xlSheetHidden
End If
Next
End Sub

Sub MakeJustHiddenVeryHidden()
Dim anySheet As Worksheet
For Each anySheet In Worksheets
If anySheet.Visible = xlSheetHidden Then
anySheet.Visible = xlSheetVeryHidden
End If
Next
End Sub

Now those 2 macros will be visible in your Tools | Macro | Macros list.
First run the MakeVeryHiddenJustHidden macro. This will turn very
hidden
sheets into hidden, but available to be made visible from the Format |
Sheets
menu. You can then use that to unhide and look (but not touch?) them.

To reverse the process, take the sheets that you unhid, and put them
back
into hidden state and run the MakeJustHiddenVeryHidden macro.

We could have gone from VeryHidden to visible in just one step, but
this
way
you are forced to acknowledge that you really want to muck around with
what
you maybe should not. Also, it would be best to only unhide any hidden
ones
one at a time so you can remember which to hide and make totally
invisible
again easily.

Your results if the workbook/very hidden worksheets have passwords
applied
may vary.


"oldLearner57" wrote:

hi community

can anybody guide this....

when i open a workbook, there is only 1 sheet1 display with data.
and
clicking on, example, a cell and use the Trace Dependent tool, the
selected
cell has an Arrow pointing to it. The other cell with the pointer,
had a
small icon (squarish shape with gridline & the arrow line is black
color
with
dash style & at the bottom right side, there is a small black dot)
and
i use the Formula display option, the selected cell has a formula
indicating
the data was from sheet2.
however, i tried using the Format Sheet to display the sheet2, but
the
command was dimmed.

is it that Sheet2 was hidden and how do i display out the hidden
sheet2 ?

the workbook seems not using Macro because i went to the Macro and
check,
there is nothing in the Macro dialog box??

hope my explaination is clear

thanks community for the assistance

:)



--
oldLearner57






  #11   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,365
Default hidden worksheet

P.S. My manners escaped me for a moment! Congratulations on MVP - the
knowledge you have and share certainly merits the award.

"Don Guillett" wrote:

If he is not intended why are you helping him???

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"JLatham" <HelpFrom @ Jlathamsite.com.(removethis) wrote in message
...
There's one more option - and as Don mentioned, perhaps you're not
intended
to see the sheet and may be better off leaving it alone. But for the
daring
soul:

Press [Alt]+[F11] to enter the VB Editor. Choose Insert | Module from the
VBE menu. Copy and paste this code into it:

Sub MakeVeryHiddenJustHidden()
Dim anySheet As Worksheet
For Each anySheet In Worksheets
If anySheet.Visible = xlSheetVeryHidden Then
anySheet.Visible = xlSheetHidden
End If
Next
End Sub

Sub MakeJustHiddenVeryHidden()
Dim anySheet As Worksheet
For Each anySheet In Worksheets
If anySheet.Visible = xlSheetHidden Then
anySheet.Visible = xlSheetVeryHidden
End If
Next
End Sub

Now those 2 macros will be visible in your Tools | Macro | Macros list.
First run the MakeVeryHiddenJustHidden macro. This will turn very hidden
sheets into hidden, but available to be made visible from the Format |
Sheets
menu. You can then use that to unhide and look (but not touch?) them.

To reverse the process, take the sheets that you unhid, and put them back
into hidden state and run the MakeJustHiddenVeryHidden macro.

We could have gone from VeryHidden to visible in just one step, but this
way
you are forced to acknowledge that you really want to muck around with
what
you maybe should not. Also, it would be best to only unhide any hidden
ones
one at a time so you can remember which to hide and make totally invisible
again easily.

Your results if the workbook/very hidden worksheets have passwords applied
may vary.


"oldLearner57" wrote:

hi community

can anybody guide this....

when i open a workbook, there is only 1 sheet1 display with data.
and
clicking on, example, a cell and use the Trace Dependent tool, the
selected
cell has an Arrow pointing to it. The other cell with the pointer, had a
small icon (squarish shape with gridline & the arrow line is black color
with
dash style & at the bottom right side, there is a small black dot)
and
i use the Formula display option, the selected cell has a formula
indicating
the data was from sheet2.
however, i tried using the Format Sheet to display the sheet2, but
the
command was dimmed.

is it that Sheet2 was hidden and how do i display out the hidden sheet2 ?

the workbook seems not using Macro because i went to the Macro and check,
there is nothing in the Macro dialog box??

hope my explaination is clear

thanks community for the assistance

:)



--
oldLearner57



  #12   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 119
Default hidden worksheet

thanks JLatham for the procedure on how to see the "hidden" sheet and rest
assure that the request for "how to display the hidden" sheet is merely a
tutorial project and has no ill intention :)

thanks community as well :)
--
oldLearner57


"JLatham" wrote:

There's one more option - and as Don mentioned, perhaps you're not intended
to see the sheet and may be better off leaving it alone. But for the daring
soul:

Press [Alt]+[F11] to enter the VB Editor. Choose Insert | Module from the
VBE menu. Copy and paste this code into it:

Sub MakeVeryHiddenJustHidden()
Dim anySheet As Worksheet
For Each anySheet In Worksheets
If anySheet.Visible = xlSheetVeryHidden Then
anySheet.Visible = xlSheetHidden
End If
Next
End Sub

Sub MakeJustHiddenVeryHidden()
Dim anySheet As Worksheet
For Each anySheet In Worksheets
If anySheet.Visible = xlSheetHidden Then
anySheet.Visible = xlSheetVeryHidden
End If
Next
End Sub

Now those 2 macros will be visible in your Tools | Macro | Macros list.
First run the MakeVeryHiddenJustHidden macro. This will turn very hidden
sheets into hidden, but available to be made visible from the Format | Sheets
menu. You can then use that to unhide and look (but not touch?) them.

To reverse the process, take the sheets that you unhid, and put them back
into hidden state and run the MakeJustHiddenVeryHidden macro.

We could have gone from VeryHidden to visible in just one step, but this way
you are forced to acknowledge that you really want to muck around with what
you maybe should not. Also, it would be best to only unhide any hidden ones
one at a time so you can remember which to hide and make totally invisible
again easily.

Your results if the workbook/very hidden worksheets have passwords applied
may vary.


"oldLearner57" wrote:

hi community

can anybody guide this....

when i open a workbook, there is only 1 sheet1 display with data.
and
clicking on, example, a cell and use the Trace Dependent tool, the selected
cell has an Arrow pointing to it. The other cell with the pointer, had a
small icon (squarish shape with gridline & the arrow line is black color with
dash style & at the bottom right side, there is a small black dot)
and
i use the Formula display option, the selected cell has a formula indicating
the data was from sheet2.
however, i tried using the Format Sheet to display the sheet2, but the
command was dimmed.

is it that Sheet2 was hidden and how do i display out the hidden sheet2 ?

the workbook seems not using Macro because i went to the Macro and check,
there is nothing in the Macro dialog box??

hope my explaination is clear

thanks community for the assistance

:)



--
oldLearner57

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
Hidden Columns No Longer Hidden after Copying Worksheet? EV Nelson Excel Discussion (Misc queries) 1 December 6th 06 05:10 PM
How do I detect hidden worksheets or hidden data on a worksheet? Alice Excel Discussion (Misc queries) 4 August 24th 06 03:38 AM
Hidden Worksheet gti_jobert Excel Worksheet Functions 2 February 13th 06 02:06 PM
hidden worksheet? davem Excel Worksheet Functions 0 December 15th 05 08:42 PM
Where's the hidden worksheet? slamm Charts and Charting in Excel 3 July 25th 05 02:31 AM


All times are GMT +1. The time now is 07:54 AM.

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"