Worksheets hidden

NickCraig

New Member
Joined
Jul 18, 2002
Messages
36
Hello

The sheets in my worksheet seem to have disappeared off the bottom of my worksheet so I can only access 1 sheet

Tried some things in advanced options but it seems to have ticked show all windows in the taskbar in display

Could it be something to do with moving files from one laptop to another with different XL versions?

Thanks
Nick
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Hi Nick,

How about looking at the display options for this worksheet!

Show sheet tabs should be checked.

If not, could they have been hidden some how?

Here is some code to unhide all sheets

Code:
Sub UnhideAll()
    Dim ws As Worksheet
    Application.DisplayAlerts = False
    For Each ws In ActiveWorkbook.Worksheets
        ws.Visible = True
    Next ws
    Application.DisplayAlerts = True
End Sub
 
Upvote 0
Thanks for the fast reply Jeff!

It's very odd

Show sheet tabs is ticked
And I've run your handy macro

And still the other sheets are not showing at all at the bottom of the screen, nor the one I am on. So I can't move between them....

Cheers
Nick
 
Upvote 0
Hi Nick,

My other thought...

Select Alt + F11 to view the VBE.

On the left side of the screen you should see all the worksheets for this workbook.

Looks like here... http://www.rondebruin.nl/code.htm

Now select a sheet and then select F4 which on the bottom left of the screen will open the properties sheet.

Look under the Visble attribute and see what it says directly to the right.

One of either:
xlSheetVisible
xlSheetHidden
xlSheetVeryHidden

Alt + Q will close the VBE and return you to Excel
 
Upvote 0

Forum statistics

Threads
1,224,603
Messages
6,179,856
Members
452,948
Latest member
UsmanAli786

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top