Written by Allen Wyatt (last updated August 17, 2019)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, and 2021
One of the finishing touches that many people need to apply to their documents is to precisely adjust the spacing between their paragraphs to achieve a desired look. Word provides quite a bit of control over the spacing between paragraphs. You do this by adjusting the Before and After values in the Paragraph dialog box.
If you do quite a bit of adjusting space before or after a paragraph, it can become tedious to continually display the Paragraph dialog box and make the adjustments. Unfortunately, Word does not include any keyboard shortcuts that allow you to adjust this type of spacing quickly. However, you can achieve an equivalent ease-of-use by developing your own macros.
For instance, the following macros will adjust the space after a paragraph by a single point.
Sub SAPlus() Dim SA As Integer SA = Selection.ParagraphFormat.SpaceAfter + 1 If SA > 1584 Then SA = 1584 Selection.ParagraphFormat.SpaceAfter = SA End Sub
Notice that the macro only allows you to increase the space after a paragraph to 1584 points. This is because this is the maximum value allowed by Word; a higher value would generate an error. A slight variation on the macro results in one for decreasing space after a paragraph:
Sub SAMinus() Dim SA As Integer SA = Selection.ParagraphFormat.SpaceAfter - 1 If SA < 0 Then SA = 0 Selection.ParagraphFormat.SpaceAfter = SA End Sub
Note that these macros could easily be modified to use some other value or formula for calculating the increment or decrement for spacing. For instance, you could add or subtract 6 points at a time, if desired. You could also change the macros so they apply to the space before a paragraph by simply changing every occurrence of "after" to "before."
The final trick to make these macros really useful is to assign them to a keyboard combination or buttons on the toolbar. You can do this using information provided in other issues of WordTips.
Note:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (8960) 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: Quickly Adjusting Paragraph Spacing.
Discover the Power of Microsoft Office This beginner-friendly guide reveals the expert tips and strategies you need to skyrocket your productivity and use Office 365 like a pro. Mastering software like Word, Excel, and PowerPoint is essential to be more efficient and advance your career. Simple lessons guide you through every step, providing the knowledge you need to get started. Check out Microsoft Office 365 For Beginners today!
If you need to adjust the space that appears before a paragraph, there are several ways you can approach the adjustment. ...
Discover MoreThe Format Painter is a handy tool for quickly copying formatting from one place to another. Used incorrectly, though, ...
Discover MoreIf you use hanging indents for some of your paragraphs, you may wonder why they don't look right when they wrap on the ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
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