Sorry I am having a major brain fart this morning. I have the code listed below on Sheet 1 of my spreadsheet. If it finds one of three values it unhides column E and if it doesn't find those values it hides the column. It works fine checking D3 but I need it to run through and check D3-D100 and take the same action if any one of those cells contain the stated variables. Any help would be greatly appreciated.
------------------------------
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$D$3" Then
If Target.Value = "Check" Then
Columns("E").EntireColumn.Hidden = False
Else
If Target.Value = "Pay Pal" Then
Columns("E").EntireColumn.Hidden = False
Else
If Target.Value = "Money Order" Then
Columns("E").EntireColumn.Hidden = False
Else
Columns("E").EntireColumn.Hidden = True
End If
End If
End If
End If
End Sub
------------------------------
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$D$3" Then
If Target.Value = "Check" Then
Columns("E").EntireColumn.Hidden = False
Else
If Target.Value = "Pay Pal" Then
Columns("E").EntireColumn.Hidden = False
Else
If Target.Value = "Money Order" Then
Columns("E").EntireColumn.Hidden = False
Else
Columns("E").EntireColumn.Hidden = True
End If
End If
End If
End If
End Sub