Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
show the sum of an arbitary selection of cells | Excel Worksheet Functions | |||
how can i make dual label cells? | Excel Worksheet Functions | |||
pivot tables-drop data in, how to make it show as columns instead | Excel Discussion (Misc queries) | |||
How to make first row to show on every page | Excel Discussion (Misc queries) | |||
Make Alignment options under format cells available as shortcut | Excel Discussion (Misc queries) |