LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 39
Default lost ability to see worksheets

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
lost ability to sort by color ichirus Excel Discussion (Misc queries) 5 April 6th 10 08:49 PM
lost ability to filter by color ichirus Excel Discussion (Misc queries) 1 March 31st 10 11:22 PM
I have lost the ability to auto Sum my columns.... Sandbar Excel Worksheet Functions 1 February 24th 09 07:03 PM
I have lost the ability to auto Sum... Shane Devenshire[_2_] Excel Worksheet Functions 0 February 24th 09 05:22 PM
Lost Ability To Calculate Workdays Steve COR Excel Discussion (Misc queries) 10 February 29th 08 09:30 PM


All times are GMT +1. The time now is 06:41 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"