Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
I would like to be able to link two worksheets together so that when I change
the font color in a single cell in worksheet 2, it will do the same (change font color) on worksheet 1. Excel 2003. -- Thanks, Ump4u |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
That would require an event macro. put something like this in your
worksheet code module (right-click the worksheet tab and choose View Code): Private Sub Worksheet_Activate() Const csTarget As String = "A1" 'change to suit Range(csTarget).Font.ColorIndex = _ Sheets("sheet2").Range(csTarget).Font.ColorIndex End Sub In article , Ump4u wrote: I would like to be able to link two worksheets together so that when I change the font color in a single cell in worksheet 2, it will do the same (change font color) on worksheet 1. Excel 2003. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
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 to change the default Border, Font Color, and Cell Color | Excel Discussion (Misc queries) | |||
Default Border, Font Color, and Cell Background Color | Excel Discussion (Misc queries) | |||
My fill color and font color do not work in Excel Std Edition 2003 | Excel Discussion (Misc queries) |