Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / New Users / April 2007

Tip: Looking for answers? Try searching our database.

Font color

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Ump4u - 28 Apr 2007 14:22 GMT
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.
Signature

Thanks,
       Ump4u

JE McGimpsey - 28 Apr 2007 14:45 GMT
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

> 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.
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.