Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
how to change the font color in an existing work book while doing editing.
which will enable you to varify the cell you have edited. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I think you mean
Tools Track Changes Highlight Changes -- Allllen "mtm640" wrote: how to change the font color in an existing work book while doing editing. which will enable you to varify the cell you have edited. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You could use event code to color the font when you make changes.
Private Sub Worksheet_Change(ByVal Target As Range) On Error GoTo ws_exit: Application.EnableEvents = False If Not Intersect(Target, Me.Range("A1:A10")) Is Nothing Then With Target If .Value < "" Then .Font.ColorIndex = 3 'red .Font.Bold = True End If End With End If ws_exit: Application.EnableEvents = True End Sub Right-click on the sheet tab and "View Code". Copy/paste the code into that sheet module. Gord Dibben MS Excel MVP On Wed, 15 Nov 2006 08:43:01 -0800, mtm640 wrote: how to change the font color in an existing work book while doing editing. which will enable you to varify the cell you have edited. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
not able to see font color change. | Excel Discussion (Misc queries) | |||
trouble with viewing fill color and font color | Excel Worksheet Functions | |||
Sort or sub-total by Fill color or font color | Excel Discussion (Misc queries) | |||
how do I correct uncommanded font color changes. | Excel Worksheet Functions | |||
My fill color and font color do not work in Excel Std Edition 2003 | Excel Discussion (Misc queries) |