Written by Allen Wyatt (last updated July 29, 2024)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, and 2021
As discussed in other issues of WordTips, en dashes and em dashes are "sticky" with the word that they follow and cannot be made sticky with the word that follows the dash. Thus, if you have two words separated by an em dash, and the combination appears near the end of a line, Word will wrap from one line to the next right after the em dash; you cannot force Word to keep both words and their connecting dash on the same line.
There is one workaround you can use, however. Let's assume that you have two words (first and second) separated by an em dash, as in first—second. If you want these to always be together, follow these steps:
The result is that the field now shows your two words separated by an em dash. The results of the field always appear on a single line, so the words and their dash will always be together. This approach works regardless of the type of dash between the two words.
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (9488) 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: Sticking with the Dashes.
Create Custom Apps with VBA! Discover how to extend the capabilities of Office 365 applications with VBA programming. Written in clear terms and understandable language, the book includes systematic tutorials and contains both intermediate and advanced content for experienced VB developers. Designed to be comprehensive, the book addresses not just one Office application, but the entire Office suite. Check out Mastering VBA for Microsoft Office 365 today!
Most Word users are proficient in cutting and pasting text using the Clipboard. One of the lesser-known editing tools, ...
Discover MoreThe no-width optional break is primarily used for Asian languages in Word. It can have value for English-speakers, as ...
Discover MoreSome fractions Word automatically converts to single characters, some it doesn't. Here's why that happens and what you ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2024-07-29 08:32:36
Barry
Yet another thank-you to Allen and his Word.tips.
This one has obviously been available for a while now, and no mention in these comments that step 7 dos not work (for me anyway). Instead of Alt+F9 I have to use Shift+F9 to get the properly displayed text! I am using Windows 11, Office 2019 on an Asus laptop - maybe it matters?
Anyway someone may find this helpful.
2020-11-23 13:19:31
@Susan,
That's a great tip. I made up a quick macro to insert the no-width non break character before and after any one character that follows the cursor. I assigned it to my Quick Access tool bar for, you know, quick access.
Sub NoBreak()
'
' NoBreak Macro
' Adds no-width/non-break character before and after a character to prevent the line from breaking on either side of the character.
'
Selection.InsertSymbol CharacterNumber:=8205, Unicode:=True, Bias:=0
Selection.MoveRight Unit:=wdCharacter, Count:=1
Selection.InsertSymbol CharacterNumber:=8205, Unicode:=True, Bias:=0
End Sub
2020-09-19 14:09:15
Susan
Another option is to take advantage of the “No-Width Non Break” found by navigating to Insert > Symbol > More Symbols, Special Characters tab. There is no assigned shortcut key. This special character is a nonprinting formatting mark, so activate Show/Hide (Ctrl-*) if necessary.
[nb] = No-Width Non Break
first[nb]—[nb]second
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