G'day,
I'm very new to VBA and am struggling with some (probably straight forward) code.
Cell A1 contains a user input number between 100 and 410 (Term 1 week 0 through Term 4 week 10 for attendance purposes)
I don't want the whole year's attendance sheet to show up; only the current week. I have entered the code below to test the first few weeks. It is successful in hiding the columns, but when I change the input number it won't unhide them. I'd greatly appreciate help in identifying what I'm doing wrong.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Range("ZZ1").Value = 100 Then
Columns("CO:OF").EntireColumn.Hidden = True
ElseIf Range("ZZ1").Value = 101 Then
Columns("O:OF").EntireColumn.Hidden = True
ElseIf Range("ZZ1").Value = 102 Then
Range("K:N,Y:OF").EntireColumn.Hidden = True
Else: Columns("K:OF").EntireColumn.Hidden = False
End If
End Sub
Thanks in advance!
Marty
Bookmarks