ciao
una idea da sviluppare
nel foglio uno ho messo tre pulsanti
( ma puoi usare una form )
A
B
C
Sub Pulsante1_Click()
Application.ScreenUpdating = False
For i = 2 To Worksheets.Count
Worksheets(i).Visible = False
For A = 2 To 5
Worksheets(A).Visible = True
Next
Next
Application.ScreenUpdating = True
Worksheets(2).Select
End Sub
Sub Pulsante2_Click()
Application.ScreenUpdating = False
For i = 2 To Worksheets.Count
Worksheets(i).Visible = False
For A = 6 To 9
Worksheets(A).Visible = True
Next
Next
Application.ScreenUpdating = True
Worksheets(6).Select
End Sub
Sub Pulsante3_Click()
Application.ScreenUpdating = False
For i = 2 To Worksheets.Count
Worksheets(i).Visible = False
For A = 10 To 13
Worksheets(A).Visible = True
Next
Next
Application.ScreenUpdating = True
Worksheets(10).Select
End Sub
al click nascondono i fogli non richiesti.
https://www.dropbox.com/s/j9k4vgwbkh3d0lu/nascondi%20fogli.xlsm?dl=0