W
Wanna Learn
Hello this is my code - it does not work.
plain english - if cell B28 = 3 YR Agreement then unhide row 32 , if B28 =
1YR Agreement the unhide row 33 . I've been trying for the past 2 hours and I
do not see what's wrong. Please help and thanks
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = Range("B28").Address Then
If Target = "3 YR r Agreement" Then
Row("32").Hidden = False
If Target.Address = Range("B28") = "1 YR Agreement" Then Rows("33").Hidden =
False
End If
End Sub
plain english - if cell B28 = 3 YR Agreement then unhide row 32 , if B28 =
1YR Agreement the unhide row 33 . I've been trying for the past 2 hours and I
do not see what's wrong. Please help and thanks
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = Range("B28").Address Then
If Target = "3 YR r Agreement" Then
Row("32").Hidden = False
If Target.Address = Range("B28") = "1 YR Agreement" Then Rows("33").Hidden =
False
End If
End Sub