Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Ed Ed is offline
external usenet poster
 
Posts: 279
Default conditional formating when cell value changes original

How can I use conditional formating or another function to indicate when the
original cell value has been edited or changes?

Example: I have a spreadsheet with values that must be edited when I receive
new value. Later I must know which values have changed so I can transmit them
to the central office.
Thanks for any help you can provide.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,593
Default conditional formating when cell value changes original

Private Sub Worksheet_Change(ByVal Target As Range)

On Error GoTo ws_exit
Application.EnableEvents = False

With Target
.Interior.ColorIndex = 38
End With

ws_exit:
Application.EnableEvents = True
End Sub

'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.


--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Ed" wrote in message
...
How can I use conditional formating or another function to indicate when
the
original cell value has been edited or changes?

Example: I have a spreadsheet with values that must be edited when I
receive
new value. Later I must know which values have changed so I can transmit
them
to the central office.
Thanks for any help you can provide.



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
conditional cell formating kthornton Excel Discussion (Misc queries) 3 August 29th 06 04:41 PM
conditional formating if cell not empty Stuart Excel Discussion (Misc queries) 2 May 10th 06 08:46 AM
paste from excel into word keeping original formating SamMJlo Setting up and Configuration of Excel 1 August 31st 05 02:01 AM
How do I setup Conditional formating for a cell that has a yes or. Jerry at ECS Excel Discussion (Misc queries) 1 April 6th 05 03:19 AM
conditional formating for a blank cell wsoung Excel Discussion (Misc queries) 5 March 9th 05 10:15 PM


All times are GMT +1. The time now is 06:01 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"