View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default How do you have the cells highlight changes? (no track changes)

Put the following macro in the worksheet code area:

Private Sub Worksheet_Change(ByVal Target As Range)
Target.Interior.ColorIndex = 6
End Sub
--
Gary''s Student - gsnu200775


"bevsweets" wrote:

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?