Pop up message

  • Thread starter Thread starter esei
  • Start date Start date
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.
 
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
 
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.
 

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

Back
Top