Written by Allen Wyatt (last updated September 28, 2021)
This tip applies to Excel 97, 2000, 2002, and 2003
Brian asked whether it is possible to use a symbol different than the % sign to represent a percentage in a cell. This is actually rather easy to do using a custom format, as described in other ExcelTips. All you need to do is create a custom format that looks similar to this:
0.0"#"
This displays a value followed by a pound sign, so that 12.3 would be displayed as 12.3#. To use a different symbol, just change whatever is within the quote marks. You can also get fancier with the custom format, such as this one that displays the word "widgets" instead of the percent sign and shows negative values in red:
#,##0_)"widgets";[Red](#,##0) "widgets"
The thing to remember about this approach is that the value is displayed "as is," so to speak. When you enter a value into a cell that is formatted as a percentage, Excel can—and often does—modify the value so it is internally consistent with a percentage. For instance, enter the value 12.3 into a cell formatted as a percentage, and Excel converts it to 0.123, which is 12.3%. If you apply a custom format to a cell and then enter the value 12.3, Excel will leave it at 12.3; it won't divide it by 100. While a display of "12.3%" and "12.3#" may look similar, the actual contents of the cell are quite different, assuming that the first is a true percentage and the second is not.
If you don't really care whether the value in the cell is usable in formulas, another approach is that you could concatenate your own symbol to the end of the value. For instance, if you have a percentage in cell A1, you could use the following in a different cell:
=A1 * 100 & " pct"
If cell A1 contains the 12.3% (a cell value of 0.123), then the formula returns "12.3 pct" (without the quote marks). Since what is returned is actually text and no longer a numeric value, the result cannot be used in other numeric formulas.
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (3459) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Changing the Percent Symbol.
Best-Selling VBA Tutorial for Beginners Take your Excel knowledge to the next level. With a little background in VBA programming, you can go well beyond basic spreadsheets and functions. Use macros to reduce errors, save time, and integrate with other Microsoft applications. Fully updated for the latest version of Office 365. Check out Microsoft 365 Excel VBA Programming For Dummies today!
Want to draw attention to some information in a particular cell? Make the cell flash, on and off. Here's how you can ...
Discover MoreWhen you create custom formats for your data, Excel provides quite a few ways you can make that data look just as you ...
Discover MoreThere are any number of reasons to format different cells in different colors. Excel allows you to easily change the ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2017-03-26 19:12:35
Allen
Actually, no. I meant "pound," not "hash." The symbol entails a bit of ambiguity. From Wikipedia: "The symbol # is most commonly known as the number sign, hash, or pound sign."
To generations of Americans, it was known as a "pound sign" for much longer than it has been known as a "hash sign."
-Allen
2017-03-26 18:41:34
Ray Austin
In your opening sentence I guess "pound" should read "hash"
"This displays a value followed by a pound sign, so that 12.3 would be displayed as 12.3#."
Ray A
Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon 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