Help unhide sheets

  • Thread starter Thread starter sdubose99
  • Start date Start date
S

sdubose99

Hi there... I'm not an expert and got into a mess with one of my files.
I intentionally hid certain sheets but now can't unhide them. I'v
unprotected my workbook, gone into VBA but can't see the other sheet
to unhide them. There should be one other sheet called 'Constants'.

I've uploaded the file 'here
(http://s32.yousendit.com/d.aspx?id=1DBE0DO78K00737WJKVNM1EZ1U)

Can anyone offer any suggestions or help?

thank you,
Scot
 
There are no hidden sheets in the workbook.

You have some hidden rows on the current sheet.
 
Perhaps the sheets visible property got changed to X1VeryHidden. If that is
the case you can only unhide the sheet using a macro. Format / Sheet /
Unhide won't work in that case.
 
Thank you very much for the replies -- can you or someone suggest a
macro to accomplish that?

Scott
 
In that Excel file, there is absolutely no hidden sheet. There is one and
only one worksheet (, and nothing is "xlveryhidden").

Regards,
Edwin Tam
(e-mail address removed)
http://www.vonixx.com
 
There are no hidden sheets. I used a macro.

here is is:

Sub abc()
For Each sh In ActiveWorkbook.Sheets
sh.Visible = xlSheetVisible
Next
End Sub
 
If you merely want to unhide all sheets, you can try:

Sub unhide_sheets()
Dim a As Object
For Each a In ActiveWorkbook.Sheets
a.Visible = True
Next
End Sub

But, if you apply the macro to the file you posted for us, you'll not find
the sheet called "constants" that you mentioned...

Regards,
Edwin Tam
(e-mail address removed)
http://www.vonixx.com
 
There is a hidden "data" sheet doing all the behind the scene
calculations and feeding the front sheet.

Scot
 
There is no hidden sheet at all !

Highlight the J and AF Columns
Go to Format , Columns, Width, then write 17,29 and click OK

Then you see your formulas and graph
 
What a doofus I am! I started with additional sheets... sorry to put
y'all through this.

Scott
 

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