Not Working : Worksheet_Change Event
Hi
Request help on the below-
I have to call a procedure on worksheet change as mentioned below. But my problem here is, the value in "D2" is changed from a user form and that is not triggering the worksheet change event. Codes are in two different workbooks.
How to call a procedure based on a change in cell value in WB1 by another procedure in WB2?
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$D$2" Then Call List_Assignments
End Sub
Code:
Sub ComboBox1_Change()
BaseWS.Range("D2").Value = ComboBox1.Value
End Sub
Thanks in advance!