View Single Post
 
Old 12-15-2019, 03:24 AM
gmayor's Avatar
gmayor gmayor is offline Windows 10 Office 2016
Expert
 
Join Date: Aug 2014
Posts: 4,142
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

One possibility is to save the document in Word 2010 compatibility mode then the option works e.g.

Code:
With ActiveDocument
        With Dialogs(wdDialogFileSaveAs)
            .Show
        End With
        If Not .Path = "" Then
            ActiveDocument.SaveAs2 FileName:=ActiveDocument.FullName, CompatibilityMode:=14
            .Compatibility(wdSplitPgBreakAndParaMark) = True
        End If
End With
You will not however be able to take advantage of features that arrived after Word 2010.
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote