Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
In my entire workbook, I want to be able to change of the font of a cell when
the cell has a hyperlink in it. This VB works if you paste it in each worksheet: Private Sub Worksheet_Change(ByVal Target As Range) If Target.Hyperlinks.Count = 1 Then Target.Select With Selection.Font .Color = -16776961 .TintAndShade = 0 End With End Sub but instead of pasting 100+ worksheets in the workbook, where should I place this code? -- Steve |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
event | Excel Discussion (Misc queries) | |||
Workbook_Open() Event | Excel Discussion (Misc queries) | |||
Change event? | Excel Discussion (Misc queries) | |||
It seems to me that I need an event Macro, | Excel Worksheet Functions | |||
Event Macro | Excel Discussion (Misc queries) |