I'm trying to set font styling only to tables after the second Word page. so far I got:
Sub defaultFontStyling()
If Selection.Information(wdWithInTable) = True Then
Range.Font.Name = "Calibri"
Range.Font.Size = 11
End If
End Sub
I don't have any tables on the first page but still, it changes the font styling also there (In the entire document).
Does someone know how to fix it?
Range? - Paul OgilvieSelection.Font.Nameand.Size- Paul Ogilvie