Inserting Commas in a Value Excel Interprets as a Number

Written by Allen Wyatt (last updated October 3, 2025)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365


Robert has a worksheet that contains a column of area codes. Each cell within the column can contain multiple area codes separated by commas, such as "973,201,732,862." A cell can have anywhere from 1 to 10 area codes in this format. Robert wants to insert a space after each comma, but Excel won't let him because it interprets each cell as containing a large number. He wonders how he can insert the spaces he needs.

The easiest way to do this is to use a formula, such as this:

=SUBSTITUTE(TEXT(A1,"#,##0"), ",", ", ")

The formula converts the value in A1 into a text format that includes commas, and then uses the SUBSTITUTE function to replace all commas with a comma followed by a space.

Understand, though, that this will only work to a point. If Excel is actually converting the area codes into a large number, it won't convert anything over five area codes. So, the following will be treated as a number just fine by Excel and the above formula will work as expected:

973,201,732,862,307

Robert said, though, that a cell could have anywhere from 1 to 10 area codes. If I add the area code 512 to the above number, this is how it would be displayed in Excel:

973,201,732,862,307,000

This has to do with Excel's internal precision which is limited to 15 digits. Five sets of area codes is 15 digits, so they display correctly; six sets is 18 digits, which will not—everything after the fifteenth digit is converted to a 0.

Thus, if Robert is actually seeing a cell that contains 10 area codes, then that cell isn't being interpreted by Excel as a numeric value. Instead, Excel is treating the value as text to begin with, and you can use the following formula to add the spaces:

=SUBSTITUTE(A1, ",", ", ")

No text conversion was necessary, so the SUBSTITUTE function will work by itself just fine.

If you don't know whether the value in A1 will be numeric or text, then you could wrap both formulas into an IF function, in this manner:

=IF(ISTEXT(A1),SUBSTITUTE(A1, ",", ", "),SUBSTITUTE(TEXT(A1,"#,##0"), ",", ", "))

You could rearrange the order of evaluation and make this formula even shorter:

=SUBSTITUTE(IF(ISTEXT(A1),A1,TEXT(A1,"#,000")),",",", ")

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (11700) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Sharing AutoText Entries

AutoText entries can make your writing more productive, if used effectively. Because of this, it can be advantageous for ...

Discover More

Filling Table Cells with a Macro

Want to stuff a value into each cell of a table? You can either type the value over and over and over again, or you can ...

Discover More

Recording a Macro

One of the most common ways of creating macros is to use Word's macro recorder. This tip shows how easy it is to use the ...

Discover More

Excel Smarts for Beginners! Featuring the friendly and trusted For Dummies style, this popular guide shows beginners how to get up and running with Excel while also helping more experienced users get comfortable with the newest features. Check out Excel 2019 For Dummies today!

More ExcelTips (ribbon)

Starting Out Formulas

When you enter a formula from the keyboard, Excel only knows it is a formula if you start it with an equal sign. You can ...

Discover More

Removing Dashes from ISBN Numbers

ISBN numbers are used to denote a unique identifier for a published book. If you remove the dashes included in an ISBN, ...

Discover More

Determining If a Value is Out of Limits

Need to figure out if a value is outside of some arbitrary limit related to a different value? There are a number of ways ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is nine more than 5?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


This Site

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.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.