I am having excel sheet . which is having the field for country and state field when I am changing the country value from united state to canada the state field should be cleared . I have done this using below code for single row But I am not able to do it for multiple rows with same format could you please guide me for the same
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$B$3" Then
Cells(3, 26).Value = "Please select"
End If
End Sub