![]() |
|
#2
|
||||
|
||||
|
For example:
Code:
Sub Demo()
Application.ScreenUpdating = False
Dim s As Long, Rng As Range
With ActiveDocument
For s = .Sections.Count To 1 Step -1
With .Sections(s)
Set Rng = .Range: Rng.End = Rng.End - 1
Rng.Find.Execute FindText:=Chr(12), Replacewith:="", Forward:=True, Wrap:=wdFindStop, Replace:=wdReplaceAll
If s = 1 Then Exit Sub
If .PageSetup.SectionStart <> wdSectionContinuous Then .Range.Characters.Last.Delete
End With
Next
End With
Application.ScreenUpdating = True
End Sub
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
| Tags |
| page breaks |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
2 frustrating bugs in Word 2019 draft view - page number in status bar and invisible page breaks
|
sidr | Word | 19 | 01-15-2025 03:23 PM |
| MS Word - can I automate page breaks after every 150 words??? | ninose | Word | 4 | 09-05-2020 12:13 PM |
Avoid continous breaks turn into page breaks
|
sponge | Word | 3 | 09-14-2017 12:11 PM |
Hidden page breaks and section breaks
|
jrasicmark | Word | 3 | 06-02-2014 11:28 PM |
| Deleted Section Breaks Changes Page Breaks | Brantnshellie | Word | 0 | 02-01-2009 09:22 PM |