Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5
Default I have a sheet that I cannot unhide.

I have a sheet that I cannot unhide. In the Visual Basic Editor I can see
that the sheet is there and it has the Visible Property set to '0 -
xlSheetHidden'. I have not been able to change the property manually or
with code. The other 3 pages are fine. The sheet was built on a Excel 2003
machine and occassionally opened on an Excel 2007 machine. Any ideas why it
won't unhide or ideas on how to recover the data?

Many thanks in advance.


__________ Information from ESET Smart Security, version of virus signature database 4494 (20091009) __________

The message was checked by ESET Smart Security.

http://www.eset.com



  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 140
Default I have a sheet that I cannot unhide.

Send me a copy. I will try to unhide it.

Dennis

"Ted" wrote in message
...
I have a sheet that I cannot unhide. In the Visual Basic Editor I can see
that the sheet is there and it has the Visible Property set to '0 -
xlSheetHidden'. I have not been able to change the property manually or
with code. The other 3 pages are fine. The sheet was built on a Excel
2003 machine and occassionally opened on an Excel 2007 machine. Any ideas
why it won't unhide or ideas on how to recover the data?

Many thanks in advance.

__________ Information from ESET Smart Security, version of virus
signature database 4494 (20091009) __________

The message was checked by ESET Smart Security.

http://www.eset.com



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,355
Default I have a sheet that I cannot unhide.

Try unprotecting the workbook first.

HTH,
Barb Reinhardt

"Ted" wrote:

I have a sheet that I cannot unhide. In the Visual Basic Editor I can see
that the sheet is there and it has the Visible Property set to '0 -
xlSheetHidden'. I have not been able to change the property manually or
with code. The other 3 pages are fine. The sheet was built on a Excel 2003
machine and occassionally opened on an Excel 2007 machine. Any ideas why it
won't unhide or ideas on how to recover the data?



Many thanks in advance.


__________ Information from ESET Smart Security, version of virus signature database 4494 (20091009) __________

The message was checked by ESET Smart Security.

http://www.eset.com




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,510
Default I have a sheet that I cannot unhide.

Hi Ted,

If all else fails you might be able to copy the data to a visible sheet with
one of the following examples.

Sub Macro1()
'Using the sheet given names _
(In parenthesis on project explorer)

Sheets("Sheet1").Cells.Copy _
Destination:=Sheets("Sheet2").Range("A1")

End Sub

Sub Macro2()
'Using the sheet code names _
(NOT in parenthesis on project explorer)

Sheet1.Cells.Copy _
Destination:=Sheet2.Range("A1")

End Sub


--
Regards,

OssieMac


  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5
Default I have a sheet that I cannot unhide.

Many thanks to all. The code recovered the data.
"OssieMac" wrote in message
...
Hi Ted,

If all else fails you might be able to copy the data to a visible sheet
with
one of the following examples.

Sub Macro1()
'Using the sheet given names _
(In parenthesis on project explorer)

Sheets("Sheet1").Cells.Copy _
Destination:=Sheets("Sheet2").Range("A1")

End Sub

Sub Macro2()
'Using the sheet code names _
(NOT in parenthesis on project explorer)

Sheet1.Cells.Copy _
Destination:=Sheet2.Range("A1")

End Sub


--
Regards,

OssieMac



__________ Information from ESET Smart Security, version of virus
signature database 4495 (20091010) __________

The message was checked by ESET Smart Security.

http://www.eset.com





__________ Information from ESET Smart Security, version of virus signature database 4496 (20091010) __________

The message was checked by ESET Smart Security.

http://www.eset.com





  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5
Default I have a sheet that I cannot unhide.

Problem solved. Many thanks to all.

"Ted" wrote in message
...
I have a sheet that I cannot unhide. In the Visual Basic Editor I can see
that the sheet is there and it has the Visible Property set to '0 -
xlSheetHidden'. I have not been able to change the property manually or
with code. The other 3 pages are fine. The sheet was built on a Excel
2003 machine and occassionally opened on an Excel 2007 machine. Any ideas
why it won't unhide or ideas on how to recover the data?

Many thanks in advance.

__________ Information from ESET Smart Security, version of virus
signature database 4494 (20091009) __________

The message was checked by ESET Smart Security.

http://www.eset.com




__________ Information from ESET Smart Security, version of virus
signature database 4496 (20091010) __________

The message was checked by ESET Smart Security.

http://www.eset.com





__________ Information from ESET Smart Security, version of virus signature database 4496 (20091010) __________

The message was checked by ESET Smart Security.

http://www.eset.com



Reply
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
Prevent unhide sheet acss Excel Worksheet Functions 2 October 29th 08 04:56 AM
Hide/Unhide Sheet using VB Phendrena Excel Programming 3 January 31st 08 12:47 AM
Fed value to unhide rows in another sheet Ram[_5_] Excel Programming 4 July 6th 07 03:08 PM
HELP!! Unhide Sheet with Macro and focus on other sheet [email protected] Excel Discussion (Misc queries) 2 May 23rd 06 07:17 PM
Can't see sheet, and have tried unhide, etc? Anna Excel Worksheet Functions 2 April 4th 06 05:27 PM


All times are GMT +1. The time now is 04:51 PM.

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

About Us

"It's about Microsoft Excel"