I have a worksheet change event which i would like to fire only if the cell was originally populated and then changed (i.e. if it is blank and then the user populates the cell, do not fire the worksheet change event). Heres the code I have. Every time a user changes a previously populated cell in column D I want the message box to appear, otherwise do nothing:
If Target.Column = 4 Then If Target.Offset(, 1).Value <> "" Then MsgBox "Please note products available are specific to either Personal or Corporate applications."
Any ideas?
If Target.Column = 4 Then If Target.Offset(, 1).Value <> "" Then MsgBox "Please note products available are specific to either Personal or Corporate applications."
Any ideas?