Written by Allen Wyatt (last updated December 3, 2022)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365
Viv has a worksheet that contains lots of product descriptions. She needs a way to replace all the spaces between words with dashes. She knows she could use Find and Replace, but would prefer to use a formula to do the replacements.
Perhaps the easiest way to accomplish this task, using a formula, is to rely on the SUBSTITUTE function. At its most simple, SUBSTITUTE is used to replace one character in a text string with a different character. Thus, assuming your original product description is in cell A1, you could use the following:
=SUBSTITUTE(A1," ","-")
This formula locates every space in the text and replaces them with dashes. If you have additional product descriptions in column A and you placed this formula in cell B1, just copy the formula down as many cells as necessary.
If you are concerned that there may be leading or trailing spaces in your data, then you can expand the formula using the TRIM function:
=SUBSTITUTE(TRIM(A1)," ","-")
Either of the formulas presented so far does great at replacing regular spaces within text. Understand, however, that if you are importing your original text from a program other than Excel, the text may contain characters that look like regular spaces, but aren't really. In that case, the above approaches won't work and you'll need to do some detective work to figure out exactly what the faux spaces really are so you can replace them.
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (12488) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365. You can find a version of this tip for the older menu interface of Excel here: Using a Formula to Replace Spaces with Dashes.
Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!
When processing some text data, you may need to perform some esoteric function, such as adding dashes between letters. ...
Discover MoreNeed to know the directory (folder) in which a workbook was saved? You can create a formula that will return this ...
Discover MoreNeed to figure out the lowest score in a range of scores? Here's the formulas to get the information you need.
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2022-12-03 11:56:52
JD Murphy
Replace Spaces with Dashes
What effect has this on formatting?
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments