PC Review


Reply
Thread Tools Rate Thread

Conditional Formatting When Cell Changed

 
 
=?Utf-8?B?R2F0b3JHaXJs?=
Guest
Posts: n/a
 
      22nd Aug 2007
How do I change the format of a cell (either color, bold, or fill) if the
cell is modified? I need managers to update a worksheet but I want to know
what cells they have modified from the original worksheet sent.
Many thanks.
 
Reply With Quote
 
 
 
 
David McRitchie
Guest
Posts: n/a
 
      22nd Aug 2007
Careful with your terminology, because Conditional Formatting applies a
format based on the current cell value regardless of how that value came\
about. http://www.mvps.org/dmcritchie/excel/condfmt.htm

What you are looking for in the manner you asked for can be achieved by
including some Event macros, needless to say replacement by the original
value would be marked, and you would have to have a means perhaps
something in another worksheet that the event macros can check so that
they will only change the formatting when allowed to do so.
http://www.mvps.org/dmcritchie/excel/event.htm

Excel has a builtin feature for this purpose, not exactly like what you
asked for called "Highlight Changes" which will mark cells and keep a
log of who made changes and when, which is probably closer to your intent.
Highlight, Change Highlighting
http://www.mvps.org/dmcritchie/excel/highlite.htm
Probably useful for what your purpose is -- during proofing, but a
huge annoyance for anything undergoing anything but very minor changes
in a short period of time. Be sure you know how to turn it off (see my
page
above) so you won't have to use a backup file to get things back to normal.

--
HTH,
David McRitchie, Microsoft MVP -- Excel
My Excel Pages: http://www.mvps.org/dmcritchie/excel/excel.htm

"GatorGirl" <(E-Mail Removed)> wrote in message
news:E40EFDF3-3C52-4667-B6E3-(E-Mail Removed)...
> How do I change the format of a cell (either color, bold, or fill) if the
> cell is modified? I need managers to update a worksheet but I want to
> know
> what cells they have modified from the original worksheet sent.
> Many thanks.


 
Reply With Quote
 
JE McGimpsey
Guest
Posts: n/a
 
      22nd Aug 2007
Conditional Formatting won't do this.

You could do this with an event macro, but you might want to look at
"View the history of changes to a workbook" in XL Help as an alternative.

The event macro could be something like this, placed in the ThisWorkbook
code module of the workbook:

Private Sub Workbook_SheetChange( _
ByVal Sh As Object, _
ByVal Target As Excel.Range)
Target.Interior.ColorIndex = 3
End Sub

Note that this doesn't provide a way to Undo in the event of a mistake.


In article <E40EFDF3-3C52-4667-B6E3-(E-Mail Removed)>,
GatorGirl <(E-Mail Removed)> wrote:

> How do I change the format of a cell (either color, bold, or fill) if the
> cell is modified? I need managers to update a worksheet but I want to know
> what cells they have modified from the original worksheet sent.
> Many thanks.

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Font changed by Conditional Formatting Hugh Microsoft Excel Misc 1 23rd Nov 2009 12:05 PM
Conditional formatting--different formatting depending on cell con Tammy S. Microsoft Excel Misc 3 30th Mar 2009 08:11 PM
Conditional Format cell colors changed. Tom Veach Microsoft Excel Discussion 1 18th Jan 2008 07:58 PM
Protect Cell Formatting including Conditional Formatting =?Utf-8?B?TWljayBKZW5uaW5ncw==?= Microsoft Excel Misc 5 13th Nov 2007 05:32 PM
Cell formatting changed Dave Kolars Microsoft Excel Discussion 3 23rd Oct 2004 04:36 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:34 AM.