automatically highlight modified cells

arnm

New Member
Joined
Jul 15, 2005
Messages
8
Version Excel 2007


We distribute a report to many users. The users edit some of the cells and return the report.

Question: How can we have the modified cells automatically highlight when edits are made?

We want to be able to view all edited cells at a glance.

Thank you for your help....!
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
You can use code, but you must make sure the users enable macros.
For a specific sheet, place this in the sheet module (RightClick the sheet tab and choose "View Code")
Code:
Private Sub WorkSheet_Change(ByVal Target as Range)
Target.Interior.ColorIndex = 6
End Sub
This is, of course very simplified.
1), You can not prevent them from undoing the Coloring
2) You can not see if they change the cell more than once.
3) This will color ANY cell changed in that sheet. It can be modified to specific cells.

To work on all sheets in the WorkBook, use this in the ThisWorkBook module
Code:
Private Sub WorkBook_Change(byVal Target as Range)
Target.Interior.ColorIndex = 6
End Sub

You can also use a comment
See my article<a href="http://www.vbaexpress.com/kb/getarticle.php?kb_id=909">Tracking Changes with Comments</a> at VbaExpress

lenze
 
Upvote 0
Is there a way to highlight changes in this way but only for a week at a time? In other words, we update a spreadsheet and email it each week with the changes for that week highlighted and the next week, we want the new changes highlighted but not the ones from the previous week.

Also, I get a Compile Error: Ambiguous name detected: WorkSheet_Change when adding this code to my spreadsheet which has an auto-sort feature already.
 
Upvote 0

Forum statistics

Threads
1,214,822
Messages
6,121,770
Members
449,049
Latest member
greyangel23

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top