Word provides a wide variety of shortcuts that affect the formatting of your document. One such shortcut, Ctrl+0 (that a zero) adds or removes a single line of space from before the selected paragraph. In this case, a "single line" is defined as 12 points of space. For some formatting needs, you may want to add more or less space before a paragraph, and so may wonder if you can change Ctrl+0 so it adds or removes the desired space.
There is no configuration setting you can use to modify how Ctrl+0 does its work; it will always add or remove the 12 points. If you have a variety of spacing needs before paragraphs, the most versatile solution is to define styles that control how you want the text to be formatted. Styles can add any amount of space desired before a paragraph, or none at all. You can then assign the styles to keyboard shortcuts and use the shortcuts to apply the styles to your text.
If you don't want to use styles, but instead want to "recode" what Ctrl+0 does, you can create your own macro. The Ctrl+0 shortcut actually runs an internal command named OpenOrCloseUpPara. If you create a macro that uses this same name, it will be run whenever you press Ctrl+0 instead of the internal command. The following macro is just one example of the type you could create:
Sub OpenOrCloseUpPara() If Selection.ParagraphFormat.SpaceBefore = 0 Then Selection.ParagraphFormat.SpaceBefore = 18 Else Selection.ParagraphFormat.SpaceBefore = 0 End If End Sub
This code first checks to see if the space before the paragraph is 0. If it is, the macro sets the space before to 18 points (a line and a half). If the space before is not 0, then it is set to 0 to effectively remove any space before.
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (12176) applies to Microsoft Word 2007 and 2010. You can find a version of this tip for the older menu interface of Word here: Adjusting Space Before.
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 you get one paragraph formatted just the way you want, you might want to copy that formatting so it can be applied ...
Discover MoreDon't want your paragraphs to flow from one page to another? Word provides a formatting setting that forces individual ...
Discover MoreGot singular lines at the bottom or top of a page? These are often referred to as widows and orphans, and Word allows you ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2016-01-29 08:54:32
Terry Belanger
I noticed that you always use shortcut keys using the keyboard. Would you also list any shortcuts with the mouse or list how to obtain the results you get from using the shortcut keys with the keyboard? I understand that the shortcut keys on the keyboard allow you to keep typing and not remove your hand from the keyboard, but I don't always remember the key combination of the shortcut and like to use the mouse shortcuts because it gives you a list to choose from. Also using shortcuts sometimes causes me to forget how to get what I want without the shortcut.
2016-01-29 08:30:13
Jeff Chimovitz
This tip nailed the significance of substituting your own custom macro for Word's built-in commands.
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.
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2018 Sharon Parq Associates, Inc.
Comments