How do you have the cells highlight changes? (no track changes)

B

bevsweets

I have a speadsheet that will require many people to review and make changes
to it. I need to be able to know what those changes are. Without using
track changes, is there a way to format the cells in such a way that will
either highlight the cell and/or change the font color if a change is made?
 
G

Gary''s Student

Put the following macro in the worksheet code area:

Private Sub Worksheet_Change(ByVal Target As Range)
Target.Interior.ColorIndex = 6
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top