Hi Guys,
I have a workbook with several sheets, I am hiding all the sheets except for one which is called Directory. I have set up tabs that the user can click on and it should unhide the sheet and stay on that sheet so the user can work on it. The code that I have used seems to unhide the sheet but goes back to the directory sheet. Any ideas on how to solve this problem we be greatly appreciated.
Sub UnhideMIS()
'
' UnhideMIS Macro
'
'
Sheets("Directory").Select
Sheets("MIS").Visible = True
Range("C2:J2").Select
End Sub
Thankyou.
I have a workbook with several sheets, I am hiding all the sheets except for one which is called Directory. I have set up tabs that the user can click on and it should unhide the sheet and stay on that sheet so the user can work on it. The code that I have used seems to unhide the sheet but goes back to the directory sheet. Any ideas on how to solve this problem we be greatly appreciated.
Sub UnhideMIS()
'
' UnhideMIS Macro
'
'
Sheets("Directory").Select
Sheets("MIS").Visible = True
Range("C2:J2").Select
End Sub
Thankyou.