F Frank Kabel May 27, 2004 #2 Hi only possible with VBA. Try something sub inhide_all dim wks as workseehts for eack wks in activeworkbook.worksheets wks.visible=true next end sub
Hi only possible with VBA. Try something sub inhide_all dim wks as workseehts for eack wks in activeworkbook.worksheets wks.visible=true next end sub
G Guest Jul 2, 2004 #3 after correcting the mispelling of "eack" I still get a data mis-match error. Please advise. Thanks, Bob
after correcting the mispelling of "eack" I still get a data mis-match error. Please advise. Thanks, Bob
G Guest Jul 2, 2004 #5 Don, thanks...I also made that correction, however, it's still buggy. Any assistance would be appreciated as I don't know VB. Bob
Don, thanks...I also made that correction, however, it's still buggy. Any assistance would be appreciated as I don't know VB. Bob
G Gord Dibben Jul 2, 2004 #6 bobs You found "eack". Try changing the spelling of "workseehts" also "Dim wks as Worksheets" Gord Dibben Excel MVP
bobs You found "eack". Try changing the spelling of "workseehts" also "Dim wks as Worksheets" Gord Dibben Excel MVP
G Gord Dibben Jul 2, 2004 #7 bobs One more correction.. Sub unhide_all() Dim wks As Worksheet 'correction here, remove the "s" For Each wks In ActiveWorkbook.Worksheets wks.Visible = True Next End Sub Gord
bobs One more correction.. Sub unhide_all() Dim wks As Worksheet 'correction here, remove the "s" For Each wks In ActiveWorkbook.Worksheets wks.Visible = True Next End Sub Gord