N
New to VBA
I have this Word document macro that, if there are comments in the text,
selects all the text and changes the font to 14 points:
With ActiveDocument.Range
If .Comments.Count > 0 Then
.Font.Name = "Times New Roman"
.Font.Size = 14
End If
However, if there are tables in the document with a smaller font, the font
change to 14 points
creates havoc with the table format.
Is there a way to select only the text and change the font size but leave
the tables unchanged?
Thaks in advance,
selects all the text and changes the font to 14 points:
With ActiveDocument.Range
If .Comments.Count > 0 Then
.Font.Name = "Times New Roman"
.Font.Size = 14
End If
However, if there are tables in the document with a smaller font, the font
change to 14 points
creates havoc with the table format.
Is there a way to select only the text and change the font size but leave
the tables unchanged?
Thaks in advance,