#1   Report Post  
esei
 
Posts: n/a
Default 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.
  #2   Report Post  
Sunil Jayakumar
 
Posts: n/a
Default

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


  #3   Report Post  
Dave Peterson
 
Posts: n/a
Default

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
  #4   Report Post  
Qwerty
 
Posts: n/a
Default

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.



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Calculations And Order In Macros Carl Bowman Excel Discussion (Misc queries) 4 February 23rd 05 10:53 PM
when opening excel I receive a message that says file can't be fo. Ken Excel Discussion (Misc queries) 3 February 22nd 05 12:13 AM
changing the message in an error message The Villages DA Excel Worksheet Functions 2 February 18th 05 05:30 PM
Error Message appearing when saving a file JaneC Excel Discussion (Misc queries) 0 November 25th 04 10:35 PM
#num! error message Frank Kabel Excel Worksheet Functions 0 November 18th 04 07:07 PM


All times are GMT +1. The time now is 07:57 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"