pop up trigger

Joined
May 23, 2013
Messages
2
Reaction score
0
Hi,

i found this code on the net and have tried in a trail workbook

when i physicall type "Project123" in a Column D cell is triggers the pop up as hoped...


... however if i use a formula in column D that still returns a value of "Project123" it does not trigger the popup


Using the below code

Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("D:D")) Is Nothing Then Exit Sub
If Target.Value <> "Project123" Then Exit Sub
MsgBox "You have entered Project123 into cell " & Target.Address
End Sub


original website http://answers.microsoft.com/en-us/...62?msgId=4fd0be14-0b3b-4c3c-bad5-f830307b584c


View attachment pop up test.zip
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top