RincewindWIZZ
Board Regular
- Joined
- Feb 22, 2005
- Messages
- 81
I wrote a spreadsheet for a chum some 3 years ago. Now it seems there is an anomaly (!) and I need to 'have a look'
The workbook has 3 sheets one of which is hidden. I need help to make this sheet visible
All sheets are unprotected
The workbook is unprotected
I have tried
Right Click on a sheet tab - 'unhide' is greyed out
VBA editor shows 3 sheets. The problem sheet has Name property "Sheet8" and is titled (referred to in the VBA code) as "ExpectedValue"
When I try to set the visible property (currently 0 - xlSheetHidden ) to visible (1) I get "UNable to set Visible property of the worksheet class"
When I try some VBA code
Sheets("ExpectedValue").Visible = True
I get error 1004 "UNable to set Visible property of the worksheet class"
In case I had named the sheet incorectly I tried
For Each WkSh In Worksheets: WkSh.Visible = True: Next
Same error 1004 "UNable to set Visible property of the worksheet class"
I actually cant change the Visible property for any of the sheets
I cant see anything sinister in workbook properties
So please how can I unhide this sheet?
The workbook has 3 sheets one of which is hidden. I need help to make this sheet visible
All sheets are unprotected
The workbook is unprotected
I have tried
Right Click on a sheet tab - 'unhide' is greyed out
VBA editor shows 3 sheets. The problem sheet has Name property "Sheet8" and is titled (referred to in the VBA code) as "ExpectedValue"
When I try to set the visible property (currently 0 - xlSheetHidden ) to visible (1) I get "UNable to set Visible property of the worksheet class"
When I try some VBA code
Sheets("ExpectedValue").Visible = True
I get error 1004 "UNable to set Visible property of the worksheet class"
In case I had named the sheet incorectly I tried
For Each WkSh In Worksheets: WkSh.Visible = True: Next
Same error 1004 "UNable to set Visible property of the worksheet class"
I actually cant change the Visible property for any of the sheets
I cant see anything sinister in workbook properties
So please how can I unhide this sheet?
Last edited: