Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
They are prolly just hidden (perhaps a macro is pressent that hides the sheets!)
Open VB (Alt+F11) Press Ctrl+R (to view Project explorer - may already be open!) Select the sheet you want from the TREE in the Project explorer Press F4 (to goto the property window) Set the Visible property to 1 - xlSheetVisible If need be, you can add a simple macro that shows all sheets when the book is opened... In "ThisWorkbook" add the following... Private Sub Workbook_Open() Sheet1.Visible = xlSheetVisible Sheet2.Visible = xlSheetVisible Sheet3.Visible = xlSheetVisible End Sub be sure to set the Sheet names correctly for your work book. "T-Rex" wrote in message ... All A critical workbook stopped showing its three worksheets...I just got the workbook without any sheets showing. Amazingly, I could view the sheets with Web Page Review. My solution wasn't pretty. I used Object Rexx's Office Automation capablity bring up the offending workbook and then set each sheet as current. I then used Copy/Move Sheet to export each sheet to a new workbook. Excel 2002, Win2K Q1: Is the loss of seeing worksheets a know problem? Q2: Can this type of problem be solved without going into VBA or Office Automation? REX |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
lost ability to sort by color | Excel Discussion (Misc queries) | |||
lost ability to filter by color | Excel Discussion (Misc queries) | |||
I have lost the ability to auto Sum my columns.... | Excel Worksheet Functions | |||
I have lost the ability to auto Sum... | Excel Worksheet Functions | |||
Lost Ability To Calculate Workdays | Excel Discussion (Misc queries) |