View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Dave Miller Dave Miller is offline
external usenet poster
 
Posts: 72
Default 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