Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
 
Posts: n/a
Default How do I make a "Worksheet_Change event" to show any changes to cells?

How do I make all the cells on a worksheet change color when a change
has been made to any of the cells?

ie. "use Worksheet_Change event" then. If any change at all is made to
a cell I need o see the cell colored to identify a change has been
made.


Can someone explain exactly how I would make a "Worksheet_Change
event" to make this happen on my spreadsheet?

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
 
Posts: n/a
Default How do I make a "Worksheet_Change event" to show any changes to cells?

Well, this is a rather ridiculous (but quick) solution. You could make
a copy of the current sheet (hold ctrl and drag your sheet) and set all
cells in the original worksheet to conditional format as red if they
are not equal to the copied sheet.

Just a thought.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Chip Pearson
 
Posts: n/a
Default How do I make a "Worksheet_Change event" to show any changes to cells?

Try

Private Sub Worksheet_Change(ByVal Target As Range)
Target.Interior.ColorIndex = 3 'change ColorIndex to desired
color
End Sub


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com

wrote in message
oups.com...
How do I make all the cells on a worksheet change color when a
change
has been made to any of the cells?

ie. "use Worksheet_Change event" then. If any change at all is
made to
a cell I need o see the cell colored to identify a change has
been
made.


Can someone explain exactly how I would make a
"Worksheet_Change
event" to make this happen on my spreadsheet?



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
show the sum of an arbitary selection of cells Bob Oxley Excel Worksheet Functions 1 April 25th 06 07:55 PM
how can i make dual label cells? babanu Excel Worksheet Functions 0 March 27th 06 12:07 AM
pivot tables-drop data in, how to make it show as columns instead Alicia Excel Discussion (Misc queries) 1 February 15th 06 03:31 PM
How to make first row to show on every page Minnow Excel Discussion (Misc queries) 5 September 22nd 05 06:56 PM
Make Alignment options under format cells available as shortcut dforrest Excel Discussion (Misc queries) 1 July 14th 05 10:58 PM


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

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

About Us

"It's about Microsoft Excel"