Pop up message

E

esei

Is there a way that Excel can remind me to do someting if
data in a cell is changed? Something like a reminder or a
pop up? I do not want to insert a comment.
 
S

Sunil Jayakumar

You could try using the Worksheet change event:

Private Sub Worksheet_Change(ByVal Target As Range)
<<Sort Code>>
End Sub

Hope this helps

Sunil Jayakumar

esei said:
Is there a way that Excel can remind me to do someting if
data in a cell is changed? Something like a reminder or a
pop up? I do not want to insert a comment.

www.ayyoo.com/credit-cards.html
 
D

Dave Peterson

Does the cell change by you typing something?

If yes:

Option Explicit
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
If Intersect(Target, Me.Range("a1")) Is Nothing Then Exit Sub
MsgBox Target.Address(0, 0) & " Has changed!"
End Sub

rightclick on the worksheet tab that should have this behavior. Select view
code. Paste that in.

(Change A1 to the cell you want.)

Back to excel and test it out.
 
Top