Prevent pivot line chart dropping

sharshra

Active Member
Joined
Mar 20, 2013
Messages
276
Office Version
  1. 365
I'm facing a problem with pivot chart dropping when the value in table is empty or zero. After searching internet, I see that it is a common problem faced by many, but couldn't find a proper solution. Searched in mrexcel forum also, but couldn't find a solution. One of the solutions suggested was to use a field to have NA() & built chart on that. Is there a better solution which can be done without having to insert a new field? Is there any setting that can achieve this?

Table below is a much simplified version of the real table, but it shows the issue. Can any experts in this forum help?
Row LabelsSum of Number
Aug-23100
Sep-2350
Oct-230
Nov-2325
Dec-230
Jan-2433
Feb-2477
Mar-2468
Apr-2497
Grand Total450


Pivot chart with zeros dropping.
1708176235199.png


Expected chart
1708176442587.png
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
I don't think you need to create a new field/column. Or maybe I don't understand your question completely. In your example, if you have values that are Zero and you do not want the chart to drop to zero, put a Conditional IF statement in

=IF(calculation or value = 0, NA(), calculation or value)

subsequent edit: I realize now you're asking about data from Pivot Tables. You could create a calculated crosstab with formulas. And, as you say add a calculated field in the PIVOT that replaces the field currently being charted.
 
Upvote 0
Sorry, the simplified table didn't created properly. In the actual pivot table, the cell is blank but the pivot line chart drops to zero when the cell value is empty.

Is it possible to achieve this without having to add a additional / calculated fields? Is there any setting available to achieve this?
 
Upvote 0
I can only do it iwth the calculated field in the PIVOT TABLE ANALYZE part of the ribbon:
(I also could not use the Data Model to create the calculated field. When I create the PIVOT TABLE, I needed to uncheck the "Add to Data Model" box.)


1708179086912.png
 
Upvote 0
I think I figured out what is happening. When there is 0 in the source table from a formula, the pivot table displays zero & accordingly pivot chart also drops. If I remove the formula, pivot table displays blank & pivot chart also doesn't drop to 0.

I understand there are workarounds to replace 0 with N/A in the source table. But I'm wondering if there is no better way to handle this excel instead of using a formula just to get this basic thing done. I will be surprised if we have to use workaround to fix this very commonly occurring scenario.
 
Upvote 0
Well zero is a value, so if the chart engine sees a value it will try to map it. That is why NA() and probably blank cells, too don't map anything
 
Upvote 0
I understand that 0 in pivot table will result in line chart dropping to 0 in pivot chart. But is there a way not to push 0 in pivot table without having to use formula to replace 0 with NA?

To complicate the matter, I found that one of the column in source table has a formula resulting in 0 value but pivot table displays blank & pivot chart is not dropping to 0. But other columns are displaying 0 in pivot table & pivot chart dropping to 0.

I can't share the table due to confidentiality clauses & also couldn't recreate similar situation in other sample tables. Curious to know if anyone have come across such situation?
 
Upvote 0
One more observation. I used formula to replace 0 with N/A in the source table. With this, pivot table had N/A & pivot chart didn't drop to 0. Looks good(y) ;)

Than, I removed the if condition in the cell to replace 0 with N/A. With this, cells in the source table have the original formula, some of which results in 0 value. Now, in the pivot table I can see blank instead of 0 :) which is good, but in the pivot chart, line is dropping to 0 :( which is not good :cry: Not sure what is happening :unsure: Does anyone has any clue?
 
Upvote 0
I found a solution :biggrin: some time back. Thought of sharing it in this forum which may be useful for others. It's quite simple!! Sometimes, tough situations can be answered by a known solution which we would have forgotten or ignored!!! 🤔

Solution:
In the source table, I just changed the formula using 'IF'. If a condition is true, do something, else have a space. For example, see the dummy formula below.

Excel Formula:
IF(A1>0,A1,"")
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,952
Members
449,095
Latest member
nmaske

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top