Written by Allen Wyatt (last updated March 19, 2022)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365
Excel allows you to easily create charts based on the data in a worksheet. If you create a pie chart, Excel charts negative values as if they were positive (in other words, it uses the absolute value). You may, however, prefer to have the negative values charted as if they were zero—to not have a slice of the pie.
Normally, people create pie charts based on a simple set of values. Each value within the series represents a portion of the whole. Thus, pie charts are often created based on the result of some sort of formula, such as the sum of values in a column; the sums of each column are the basis for the pie chart. Instead of using a standard SUM formula for the values to be charted, you could use a formula such as the following:
=IF(SUM(D7:D11)<0,0,SUM(D7:D11))
In this case, the value to be charted is set to zero if the sum is less than zero, or it reflects the actual total if the sum is zero or above.
If your data is conducive to filtering, you could also set up a filter so that negative values are filtered out. This will cause those values to be ignored in the chart created by Excel.
Of course, all this being said, one would have to wonder if a pie chart is the appropriate chart for representing this type of data in the first place. After all, pie charts represent portions of a whole—yet by filtering or adjusting totals, portions of the whole are being removed. Granted, they are negative portions, but they are portions nonetheless.
Pie charts, by their nature, are not well-suited for displaying negative numbers. If negative numbers are expected, then column or bar charts are a much more appropriate choice. Why? Because they can represent data that falls to the left of or below a baseline—as is appropriate for negative numbers.
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (10401) 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: Negatives in Pie Charts.
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!
Place a chart on a worksheet and you may not be satisfied with its size. Changing the size of a chart is a simple process ...
Discover MoreWhen you want to change the defaults used for charts, a chart template is the way to go. This tip shows how easy it is to ...
Discover MoreWhen creating a chart from information that contains empty cells, you can direct Excel how it should proceed. This tip ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
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