Greeting, Is there any code to show all hidden sheets in worksheet? Thanks
M Mike H Feb 3, 2008 #2 Unless they are xlveryhidden you don't need code, simply unhide them with Format|sheet|Unhide Mike
B Bob Phillips Feb 3, 2008 #3 For Each sh In ACtiveworkbook.Worksheets sh.Visible = xlSheetVisible Next sh -- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy)
For Each sh In ACtiveworkbook.Worksheets sh.Visible = xlSheetVisible Next sh -- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy)
F FSt1 Feb 3, 2008 #4 hi as in vb code? Dim WS As Worksheet For Each WS In Worksheets WS.Visible = True Next WS untested. watch for typos regards FSt1
hi as in vb code? Dim WS As Worksheet For Each WS In Worksheets WS.Visible = True Next WS untested. watch for typos regards FSt1
G ghost Feb 3, 2008 #5 Hi Mike and thank you for response When I go to Microsoft VB, Worksheet project has 25 sheets, while in the sheet tab; there are five sheets only, Please advice? Thank you again
Hi Mike and thank you for response When I go to Microsoft VB, Worksheet project has 25 sheets, while in the sheet tab; there are five sheets only, Please advice? Thank you again