In said:
The first two columns are frozen, the next
columns (C-R) contain the person's name,
and a # sign (alternating).
Depending on the value in the cell (A2 in
this case), I want to hide specific columns.
If the value is 3, then columns I thru R are hidden.
If the value is 6, then colums O thru R are hidden.
Try this
Again, right-click on the sheet tab, choose View Code, and copy
and paste the following code onto the sheet's module.
--
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$2" Then
If Target.Value = 3 Then
ActiveCell.Offset(0, 7).Range("A1:J1") _
.EntireColumn.Hidden = True
ElseIf Target.Value = 6 Then
ActiveCell.Offset(0, 13).Range("A1

1") _
.EntireColumn.Hidden = True
Else
ActiveCell.Offset(0, 6).Range("A1

1") _
.EntireColumn.Hidden = False
End If
End If
End Sub
--
You can add additional elseif's if needed. The final
else (rather obviously) unhides the hidden columns.
Hope this is what you were looking for.
Wolf
--
*****************************************
Dolor ad tempus est.
Sanatur vulni.
Cicatrices amantur a scortillis.
*****************************************
Life is too short to suffer fools gladly.
*****************************************
You can have Freedom or Peace,
Don't EVER count on having both.