Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() |
#12
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Hidden Columns No Longer Hidden after Copying Worksheet? | Excel Discussion (Misc queries) | |||
How do I detect hidden worksheets or hidden data on a worksheet? | Excel Discussion (Misc queries) | |||
Hidden Worksheet | Excel Worksheet Functions | |||
hidden worksheet? | Excel Worksheet Functions | |||
Where's the hidden worksheet? | Charts and Charting in Excel |