This is a VBA question, so it has been moved to the correct forum.
A button that shows one set of sheet tabs and hides others? Simple enough:
Option Explicit
Sub ShowFirstSet()
Sheets("Sheet1").Visible = True
Sheets("Sheet2").Visible = True
Sheets("Sheet3").Visible = False
Sheets("Sheet4").Visible = False
End Sub
Sub ShowSecoondSet()
Sheets("Sheet3").Visible = True
Sheets("Sheet4").Visible = True
Sheets("Sheet1").Visible = False
Sheets("Sheet2").Visible = False
End Sub
Adjust that as needed and as many as needed. Remember to always SHOW the tabs first, then hide the rest.
If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED. Thanks.
Bookmarks