Hi experts:
Thanks for the help with my previous question. The following code works when the user changes certain cell (in this case, B23). However, it doesn't work if the cell changes because value of another cell or a check box involved in its formula is changed. What can I do to handle it? Thank you.
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("B23")) Is Nothing Then Call mySub
End SubThanks.
Start Free Trial