Thread
:
Text formatting - Change Font Size
View Single Post
#
2
Posted to microsoft.public.excel.programming
Dave Miller
external usenet poster
Posts: 72
Text formatting - Change Font Size
Dylan,
try this:
Sub NTR_9pt()
Dim r, c As Range
Set r = Selection 'Or any other range you want
For Each c In r
If c.Font.Name = "Times New Roman" Then
c.Font.Size = 9
End If
Next
End Sub
David Miller
Reply With Quote
Dave Miller
View Public Profile
Find all posts by Dave Miller