Written by Allen Wyatt (last updated February 15, 2024)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, and 2021
Word contains a powerful outlining system that allows you to quickly make changes to document structure. You do this in Outline view, which is most easily invoked by clicking on the Outline view button on the status bar. When you enter Outline view, Word displays the Outlining tab on the ribbon. You use the controls on the tab to change indentation levels for your outline.
Besides headings, you may have body text within your document. You may wish to change a current heading to body text. You can do this in any of these ways, after positioning the insertion point on the heading you want to change:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (5335) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, and 2021. You can find a version of this tip for the older menu interface of Word here: Changing a Heading to Body Text.
Create Custom Apps with VBA! Discover how to extend the capabilities of Office 2013 (Word, Excel, PowerPoint, Outlook, and Access) with VBA programming, using it for writing macros, automating Office applications, and creating custom applications. Check out Mastering VBA for Office 2013 today!
When working in Outline view, you can control how Word displays the body text under each heading. You can specify that ...
Discover MoreDon't like the formatting that appears when looking at your document in Outline view? You can turn off the formatting and ...
Discover MoreOutlining is a great way to develop the content of your document. If you need to, you can even print the outline and only ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2024-02-16 01:46:43
JOHANN SWART
Hi Allen,
I have formulated a template with predefined layout and styles, which needs to be distributed to several users. To ensure the proper use of this template, the non-printing characters, fields, and margins need to be visible. To make this easy for the user, I have compiled two macros that (i) switch on and (ii) switch off these non-printing visual aids when not necessary.
Is it possible to make this macro an inherent part of the template so that when the user opens it, the "switch on" macro is run? If yes, can you please guide me in achieving this?
I include the two macros for information.
I am using Microsoft Office Professional Plus 2019
Regards
Johann Swart
Sub ShowBorderAndNPC()
'
' ShowBorderAndNPC Macro
' Macro recorded 2007/02/24 by Johann Swart
'
Application.DisplayStatusBar = True
With ActiveWindow
.DisplayHorizontalScrollBar = True
.DisplayVerticalScrollBar = True
.DisplayLeftScrollBar = False
.StyleAreaWidth = CentimetersToPoints(0)
.DisplayVerticalRuler = True
.DisplayRightRuler = False
.DisplayScreenTips = True
With .View
.ShowAnimation = True
.Draft = False
.WrapToWindow = False
.ShowPicturePlaceHolders = False
.ShowFieldCodes = False
.ShowBookmarks = True
.FieldShading = wdFieldShadingAlways
.ShowTabs = False
.ShowSpaces = False
.ShowParagraphs = False
.ShowHyphens = False
.ShowHiddenText = False
.ShowAll = True
.ShowDrawings = True
.ShowObjectAnchors = True
.ShowTextBoundaries = True
.ShowHighlight = True
End With
End With
ActiveWindow.View.TableGridlines = Not ActiveWindow.View.TableGridlines
End Sub
Sub HideBorderAndNPC()
'
' HideBorderAndNPC Macro
' Macro recorded 2007/02/24 by Johann Swart
'
Application.DisplayStatusBar = True
With ActiveWindow
.DisplayHorizontalScrollBar = True
.DisplayVerticalScrollBar = True
.DisplayLeftScrollBar = False
.StyleAreaWidth = CentimetersToPoints(0)
.DisplayVerticalRuler = True
.DisplayRightRuler = False
.DisplayScreenTips = True
With .View
.ShowAnimation = True
.Draft = False
.WrapToWindow = False
.ShowPicturePlaceHolders = False
.ShowFieldCodes = False
.ShowBookmarks = False
.FieldShading = wdFieldShadingNever
.ShowTabs = False
.ShowSpaces = False
.ShowParagraphs = False
.ShowHyphens = False
.ShowHiddenText = False
.ShowAll = False
.ShowDrawings = True
.ShowObjectAnchors = False
.ShowTextBoundaries = False
.ShowHighlight = True
End With
End With
ActiveWindow.View.TableGridlines = Not ActiveWindow.View.TableGridlines
End Sub
2024-02-15 08:23:45
Timothy J. McGowan
In the version of Word we have, and with the myriad policies set in our workplace, Outline View is not found on our Word status bar. We can go to View, then Outline View.
To address the comment from gggggg, the Demote to Body Text tool is found on the Outlining ribbon; it's a double-headed green arrow pointing to the right in our American English version of Word.
2020-10-30 17:45:30
ggggggg
You explained everything except how to find the all-important Demote to Body Text tool.
Got a version of Word that uses the ribbon interface (Word 2007 or later)? This site is for you! If you use an earlier version of Word, visit our WordTips site focusing on the menu interface.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments