First you need to edit your post and insert the code in CODE tags so it looks like this:
Sub goto_sheet()
Sheets("Thyristors").Select
End Sub
Sub back_to_sheet()
Sheets("Main Menu").Select
End Sub
You that by clicking Edit Post and then highlight the code and press # next to the <> sign and hit save.
For your problem.
You can use this:
Sub goto_sheet()
Sheets("Thyristors").Hidden = False
Sheets("Thyristors").Activate
End Sub
For going back to main menu:
Sub back_to_sheet()
ActiveSheet.Hidden = True
Sheets("Main Menu").Activate
End Sub
Bookmarks