Hi there,
I have added the following basic code to auto hide certain tabs in a spreadsheet, based on a cell value in a specific tab (cell C30):
Private Sub Worksheet_Change(ByVal Target As Range)
If [C30] = "58" Then
Sheets("Apr 2018 Correction Detail").Visible = True
Else
Sheets("Apr 2018...