Hello There,
I have the following code:
so what I need is too loop this so I don't need to define each row individually
Thanks in advance.
I have the following code:
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$B$12" Then
Range("C12").Value = "Please Select..."
End If
If Target.Address = "$C$12" Then
Range("D12").Value = "Please Select..."
End If
If Target.Address = "$B$13" Then
Range("C13").Value = "Please Select..."
End If
If Target.Address = "$C$13" Then
Range("D13").Value = "Please Select..."
End If
If Target.Address = "$B$14" Then
Range("C14").Value = "Please Select..."
End If
If Target.Address = "$C$14" Then
Range("D14").Value = "Please Select..."
End If
End Sub
so what I need is too loop this so I don't need to define each row individually
Thanks in advance.
Last edited: