Douglas is having some problems getting his head around a custom format he needs. He has created a custom format that displays large numbers the way he wants, such that $1,000,000 is displayed as $1.0M and $1,000 is displayed as $1.0K. This format is as follows: [>1000000]$#.0,,"M";[>1000]$#.0,"K";$#,##0.0. Douglas wants to know how to adjust the custom format so that negative numbers appear in this same fashion, but in red with parentheses around them, like ($1.0K).
Unfortunately, what you want to do is not possible with a single custom format. The reason is because a single custom format can only have four conditions, each separated by a semicolon. This is the general syntax of a custom format:
positive; negative; zero; text
Note that the first format is used when the value is positive, the second when it is negative, the third when the value is exactly zero, and the fourth when the value is text. While this is the general syntax for custom formats, you can "fudge" the formats a little in the way you are doing. Consider the format you are using:
[>1000000]$#.0,,"M";[>1000]$#.0,"K";$#,##0.0
Note that according to the general syntax, the format before the first semicolon would be used for positive values, the next format for negative values, and the third for zero values. However, this is not the way in which Excel translates this custom format. It translates it as "if greater than 1,000,000, do this; if greater than 1,000 do this; else do this". There is no positive or negative connotation in the format; in fact, any negative values are treated to the default treatment, which is the third format.
What you are trying to do is to define two positive conditions (one for millions and one for thousands) and two negative conditions (again, for millions and thousands). This cannot be done in a single custom format, regardless of how you try to put it together. Instead, you should use two custom formats, such as these:
[>=1000000]$#.0,,"M ";[>=1000]$#.0,"K ";$#,##0.0 [Red][<=-1000000]($#.0,,"M");[Red][<=-1000]($#.0,"K");[Red]($#,##0.0)
The first format is to be used in the case of positive values; it is a variation on the original format suggested at the first of the tip. The second format is to be used with negative values. These custom formats will need to be manually applied, based upon the value in the cell.
This may seem like a lot of work to go through to get the formatting you want. It is possible to create a macro that applies the formats, but the macro would not be a trivial endeavor. It would need to check what the value in the cell is, pick the proper format, construct the format, stuff it into the custom format for the cell, and then move on to the next cell.
There is one thing you can do, however—you can combine the use of a custom format with Excel's conditional formatting capabilities. Set up the following three custom formats in your worksheet:
_($#.0_K_);[Red]($#.0_K);;@ _($#.0,"K"_);[Red]($#.0,"K");;@ _($#.0,,"M"_);[Red]($#.0,,"M");;@
Then you can use the conditional formatting capabilities (Home tab of the ribbon | Conditional Formatting | Manage Rules) to define six different formatting rules. When you click the New Rule button to start defining each rule, you'll choose Format Only Cells that Contain at the top of the New Formatting Rule dialog box. Here are the six rules you'll define:
Cell Value <= -1000000 Cell Value >= 1000000 Cell Value between -999999 and -1000 Cell Value between 1000 and 999999 Cell Value between -999 and -1 Cell Value between 0 and 999
As you define each of these rules, you'll click the Format button in the New Formatting Rule dialog box. This presents the Format Cells dialog box in which you should click the Number tab. There you can choose the Custom category and pick one of the three custom formats you defined. Here are the ones you should choose:
That's it; the conditional formatting rules do the testing for your value ranges and then apply the proper custom formats for those numbers.
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (10227) 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: Handling Negative Numbers in a Complex Custom Format.
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!
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 MoreCreating custom formats is a very powerful way to display information exactly as you want it to appear. Most custom ...
Discover MoreWhen you create custom cell formats, you can include codes that allow you to set the color of a cell and that specify the ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2020-09-15 09:39:20
Stephen
This works for negative numbers in a single format [>=999950]0.0,,"M";[<=-999950]0.0,,"M";0.0,"K"
2015-12-11 12:39:49
Andrew
Hi,
Thank you for your tips, they have been very helpful.
I have one question about adding a notation to make "0" appear as a - (en dash).
Here's my notation to format numbers as $M or $K depending on the specific number entered. But, I want to also have it so that zero is displayed as "-".
My current notation:
[>999999]$#.0,,"M";[>1000]$#,"K";$#,##0;
2015-04-12 05:41:10
Col Delane
A variation to Paul's suggestion is a combination of the middle and final solutions described in the tip (i.e. use [>=1000000]$#.0,,"M ";[>=1000]$#.0,"K ";$#,##0.0 as the base format, and
[Red][<=-1000000]($#.0,,"M");[Red][<=-1000]($#.0,"K");[Red]($#,##0.0) via conditional formatting when values are negative).
However, if you do go with the final solution, the number of conditional formats can be reduced to just two (less CF is always better) by:
(1) using _($#.0_K_);[Red]($#.0_K);;@
as the base cell format,
(2) using Conditional Format _($#.0,"K"_);[Red]($#.0,"K");;@
with a custom formula =AND(ABS([REF])>999,ABS([REF])<=999999), and
(3) using Conditional Format _($#.0,,"M"_);[Red]($#.0,,"M");;@
with a custom formula =ABS([REF])>999999
2015-04-11 08:39:50
Daniel
Paul, remember that the originally defined custom format doesn't specify any format for negative values. We could use conditional formatting to make negative values red, but that still doesn't fix the issue of using "K" or "M" in those negative values.
2015-04-11 07:13:43
paul
why not just use the originally defined custom format in combination with one conditional formatting formula: if <0 then text color = red
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