ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Pop up message (https://www.excelbanter.com/excel-discussion-misc-queries/20413-pop-up-message.html)

esei

Pop up message
 
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.

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" wrote in message
...
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



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.

esei wrote:

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.


--

Dave Peterson

Qwerty

Have you tried Data Validation in the Data menu?

"esei" wrote in message
...
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.





All times are GMT +1. The time now is 12:01 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com