Excel won't show the workbooks worksheets

15,344

Everything you describe leads me to believe you're hiding the workbook window, not the worksheets. When a workbook window is hidden, all the sheets become hidden and much of the functionality from the toolbar greys out.

In the Visual Basic Editor, you'd also be able to see all of the worksheets and their visibility would be xlVisible, yet they cannot be seen on the screen. This is because they ARE visible, but the window which displays them is not.

Please try clicking the View tab in the toolbar, and then under the Window pane, click Unhide.

enter image description here

If this doesn't work, then try toggling visibility of the workbook.

Share:
15,344
marj
Author by

marj

Updated on August 10, 2022

Comments

  • marj
    marj almost 2 years

    I have an Excel Workbook containing three worksheets. However all sheets seem to be hidden dispite that their visibility is set to xlSheetVisible (Found by looking at the worksheet properties in the VBA editor).

    This is what I have tried so far to solve the problem.

    • Searched Google for help, but all similar problems have been solved by changing the Visibility from xlSheetHidden to xlSheetVisible. But in my case that setting is already set to xlVisible.

      • By using VBA I have tried to activate a sheet without any result.

    By reading this you might have guessed that I am able to see and access the worksheets from the VBA editor.

    Despite that looking at the normal Excel userinterface, all buttons are disabled and clicking at the office/file button in the topleft corner doesn't allow me to save the workbook. However if I make any changes to the VBA itself and tries to close the workbook then Excel asks whether or not I would like to save the workbook.

  • marj
    marj over 11 years
    When I look at the Advanced tab Excel states that there is no workbooks open, so I am not allowed to make that change.
  • Dexter1759
    Dexter1759 over 11 years
    Apologies, it maybe as others have suggested then, in the VBE window, select "ThisWorkbook" from the project explorer. Press F4 to ensure properties are visible and find the property labelled "IsAddin", ensure this is False and see if you can see your worksheets now.
  • marj
    marj over 11 years
    I've just double checked and that setting is set to false :/