In other issues of ExcelTips you learn how formatting codes are used to create custom formats used to display numbers, dates, and times. Excel also provides formatting codes to specify text display colors, as well as codes that indicate conditional formats. These formats only use a specific format when the value being displayed meets a certain criteria.
To understand these codes a bit better, take a look at this format within the Currency category:
$#,##0.00_);[Red]($#,##0.00)
Notice there are two number formats divided by a semicolon. If there are two formats like this, Excel assumes that the one on the left is to be used if the number is 0 or above, and the one on the right is to be used if the number is less than 0. This example results in all numbers having a dollar sign, a comma being used as a thousands separator, amounts less than $1.00 having a leading 0, and negative values being shown in red with surrounding parentheses. The _) part of the left format is used so that positive and negative numbers align properly (positive numbers will leave a space the same width as a right parenthesis after the number).
You are not limited to only two formats, as in this example. You can actually use four formats, each separated by a semicolon. The first is used if the value is above 0, the second is used if it is below 0, the third is used if it is equal to 0, and the fourth is used if the value being displayed is text.
The following table shows the color and conditional formatting codes. As you may have surmised, these codes are used with the formatting codes discussed in other issues of ExcelTips.
Symbol | Effect | |
---|---|---|
[Black] | Black type. | |
[Blue] | Blue type. | |
[Cyan] | Cyan type. | |
[Green] | Green type. | |
[Magenta] | Magenta type. | |
[Red] | Red type. | |
[White] | White type. | |
[Yellow] | Yellow type. | |
[COLOR x] | Type in color code x, where x can be any value from 1 to 56. | |
[= value] | Use this format only if the number equals this value. | |
[< value] | Use this format only if the number is less than this value. | |
[<= value] | Use this format only if the number is less than or equals this value. | |
[> value] | Use this format only if the number is greater than this value. | |
[>= value] | Use this format only if the number is greater than or equals this value. | |
[<> value] | Use this format only if the number does not equal this value. |
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (8352) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Office 365. You can find a version of this tip for the older menu interface of Excel here: Understanding Color and Conditional Formatting Codes.
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 2013 For Dummies today!
If you are familiar with decimal tabs in Word, you may wonder if you can set the same sort of alignment in Excel. The ...
Discover MoreExcel allows you to format your numeric values in a wide variety of ways. One such formatting option is to display ...
Discover MoreWhile the implementation of custom formats in Excel is not terribly robust, you can still achieve some amazing results ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2018-09-08 12:58:32
Ronmio
A list of the 56 colors in the COLOR X palette can be found at http://access-excel.tips/excel-vba-color-code-list/ .
Even more details about Excel's color palette, including the HTML and RGB values of the 56 colors, can be found at http://dmcritchie.mvps.org/excel/colors.htm . The latter also includes a lot of examples of dealing with color in macros including the VBA code that David McRitchie used to create his color table.
An interesting tangent is David McRitchie's macros for converting selections in an Excel sheet into compact HTML. That's what he used to convert his color table in Excel to HTML for the webpage mentioned above. Information about his free XL2HTML tool can be found at http://dmcritchie.mvps.org/excel/xl2html.htm
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 © 2021 Sharon Parq Associates, Inc.
Comments