You are making manual changes to cell C3? If so, you can put a macro into the sheet module to specifically watch these manual changes to cell C3 and hide/unhide rows based on the current value. Right-click the tab and select View Code, paste in this sample code:
Option Explicit
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, [C3]) Is Nothing Then
Range("5:104").EntireRow.Hidden = False
Select Case [C3].Value
Case 12: Range("26:104").EntireRow.Hidden = True
Case 11: Range("5:24, 49:104").EntireRow.Hidden = True
Case 10: Range("5:43, 71:104").EntireRow.Hidden = True
Case 9: Range("5:65, 90:104").EntireRow.Hidden = True
Case 8: Range("5:86").EntireRow.Hidden = True
End Select
End If
End Sub
Bookmarks