Hi
I have the following code
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Address = Range("B3").Address Then
Range("Vendor").Value = ""
End If
End Sub
What I am trying to do is clear a row of cells that are drop down boxes, when B3 changes. B3 is the output cell from a ActiveX combo box and displays text
All help appreciated
I have the following code
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Address = Range("B3").Address Then
Range("Vendor").Value = ""
End If
End Sub
What I am trying to do is clear a row of cells that are drop down boxes, when B3 changes. B3 is the output cell from a ActiveX combo box and displays text
All help appreciated