How to remove section break continues in MS Word?

User avatar
Sam1085
3StarLounger
Posts: 318
Joined: 23 Aug 2016, 07:43
Location: Sri Lanka

How to remove section break continues in MS Word?

Post by Sam1085 »

Hi,

I have a document with few section break types such as 'Next Page', 'Continues', 'Even page' and 'Odd page'. I tried to remove a section break 'Continues' but if I delete that then the section break 'Continues' moving to the previous page. Seems like converting the other types of Section Break types into the 'Continues' break.

I need to know this scenario is a word bug? and is there any workaround to remove 'Continues' section break without changing other types of section break?

Thank you!
-Sampath-

User avatar
HansV
Administrator
Posts: 78545
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: How to remove section break continues in MS Word?

Post by HansV »

See Working with sections for an explanation of this behavior, and a workaround.
Best wishes,
Hans

User avatar
macropod
4StarLounger
Posts: 508
Joined: 17 Dec 2010, 03:14

Re: How to remove section break continues in MS Word?

Post by macropod »

Another way of dealing with the issue is to select anything after the Section break you want to change, then run the following macro:

Code: Select all

Sub MakeSectionBreakContinuous()
ActiveDocument.Sections(Selection.Sections(1).Index).PageSetup.SectionStart = wdSectionContinuous
End Sub
Paul Edstein
[Fmr MS MVP - Word]

User avatar
Sam1085
3StarLounger
Posts: 318
Joined: 23 Aug 2016, 07:43
Location: Sri Lanka

Re: How to remove section break continues in MS Word?

Post by Sam1085 »

Thank you both of you... It worked and now I have an idea about why this happen.
Thanks again.
-Sampath-