Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #9  
Old 12-16-2019, 10:04 PM
gmayor's Avatar
gmayor gmayor is offline "Split apart page break and paragraph mark" setting Windows 10 "Split apart page break and paragraph mark" setting Office 2016
Expert
 
Join Date: Aug 2014
Posts: 4,144
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

If you are editing other people's documents the chances are enormous that they are not using the new features of Word, so you could simply saveas and return the document to the latest format before returning the document.

Perhaps easier still is to use a macro to insert the break e.g.

Code:
Sub InsertWord2010PageBreak()
'Graham Mayor - https://www.gmayor.com - Last updated - 17 Dec 2019
Dim oRng As Range
    Set oRng = Selection.Range
    oRng.Collapse 1
    oRng.MoveStartWhile Chr(32), wdBackward
    oRng.MoveEndWhile Chr(32)
    oRng.Text = ""
    oRng.InsertBreak wdPageBreak
    oRng.MoveStart , -3
    oRng.Select
    If oRng.Characters.First = Chr(13) Then oRng.Characters.First.Delete
    If oRng.Characters.Last = Chr(13) Then oRng.Characters.Last.Delete
lbl_Exit:
    Set oRng = Nothing
    Exit Sub
End Sub
__________________
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
 



Similar Threads
Thread Thread Starter Forum Replies Last Post
Section break "Next Page" adds blank page mark.plc Word 1 03-06-2018 07:56 AM
Word 2010: Section Break "Next" Creates Blank Page Eri Word 11 02-09-2017 03:36 PM
"Split apart page break and paragraph mark" setting Problem with "Next page" section break automatically turning into "Odd or Even Page" c_gallagher25 Word 1 02-12-2014 04:27 PM
"First column" in word table page break border mj1856 Word Tables 1 04-25-2012 03:21 AM
why the "section break-next page" is switched to "section break-continuous"? Jamal NUMAN Word 6 12-14-2011 03:35 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 09:51 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft