Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi all,
With the code below I want to change all red Wide Latin text in range A2:F100 into black, bold (in my Dutch version the word for "bold" is "vet"), Times New Roman. It will not work at all. What's wrong? Jack Sons The Netherlands ------------------------------------------------------------------------------------ Sub Change() Dim rng As Range Dim rCell As Range Set rng = Range("A2:F100") For Each rCell In rng.Cells With rCell If .Font.Name = "Wide Latin" Then .Font.Name = "Times New Roman" .Font.ColorIndex = 1 .FontStyle = "vet" End If End With Next rCell End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Change case...help please | Excel Worksheet Functions | |||
Macro for changing text to Proper Case | Excel Worksheet Functions | |||
Using other workbooks.. | Excel Worksheet Functions | |||
How to run code to change Excel comment font | Excel Worksheet Functions | |||
Make Change Case in Excel a format rather than formula | Excel Worksheet Functions |