Written by Allen Wyatt (last updated January 23, 2021)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, and 2021
In many businesses (such as the legal profession) it is important to be able to indent paragraphs from both the left and right margins. This helps to offset information from the foregoing and following text so it stands out better. This type of paragraph formatting is often applied to quotations and other "verbatim" information included in a document.
Unfortunately, Word does not include a quick shortcut to create a double indent. You can press Ctrl+M, but that indents only the left side of a paragraph. You are still stuck using the Paragraph dialog box or the Ruler to indent the right side.
One way around this is to create a style in Word that has the necessary indents on both the left and right side. The style can then be assigned to a keyboard shortcut so you can apply it easily. This approach can be very powerful, especially if you think you may need to change the margins on double-indented paragraphs at a later time.
Another approach is to create a macro that does the indenting for you. You can then assign the macro to a keyboard shortcut (such as Alt+D) so it can be invoked easily. The following macro will increase both the left and right indent of a paragraph by a quarter inch.
Sub DoubleIndent() Dim Lindt as Single Dim Rindt as Single Lindt = Selection.ParagraphFormat.LeftIndent Rindt = Selection.ParagraphFormat.RightIndent Lindt = Lindt + 18 If Lindt > 180 Then Lindt = 0 Rindt = Rindt + 18 If Rindt > 180 Then Rindt = 0 Selection.ParagraphFormat.LeftIndent = Lindt Selection.ParagraphFormat.RightIndent = Rindt End Sub
The nifty thing about this macro is that you can repeatedly apply it and continue to step the margins inward. When you try to increase the margins beyond 2.5 inches on each side, the indents are automatically set back to zero and the process can start again.
Remember that the macro changes nothing else about the paragraph—just the left and right margins. If you want it to change some other formatting characteristic, the macro is easy enough to modify. For instance, if you wanted it to make the paragraph justified to both the left and right margin, you could add the following single line just before the "End Sub" line at the end of the macro:
.Alignment = wdAlignParagraphJustify
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 (10733) 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: Double Indenting.
Do More in Less Time! Are you ready to harness the full power of Word 2013 to create professional documents? In this comprehensive guide you'll learn the skills and techniques for efficiently building the documents you need for your professional and your personal life. Check out Word 2013 In Depth today!
A hanging indent is a type of paragraph formatting in which all lines of the paragraph are indented from the left margin ...
Discover MoreThere is no need to press Enter a second time at the end of each paragraph. Let Word take care of the spacing ...
Discover MoreWord allows you to format a paragraph so that it is on the same page as whatever paragraph follows it. You may want, ...
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