![]() |
|
#9
|
||||
|
||||
|
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 |
|
|
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 |
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 |