View Single Post
 
Old 02-10-2017, 05:00 PM
Boris_R Boris_R is offline Windows Vista Office 2010 32bit
Novice
 
Join Date: Oct 2015
Posts: 6
Boris_R is on a distinguished road
Default

Quote:
Originally Posted by slaycock View Post
I also have lots and lots of expanded, left, right, raised, lowered, in multifarious combinations so finding a macro solution would be great. All of this stuff is unecessary extraneous formatting which can be safely removed.
Any more thoughts.
Try it on the copy. Perhaps, will help
Code:
Sub reset_FP()
    With ActiveDocument.Range
        .Font.Reset
        .Paragraphs.Reset
    End With
End Sub
Reply With Quote