How do I exclude blank rows from my Pivot Table?

PattiK323

New Member
Joined
Jun 12, 2014
Messages
35
I have a pivot table that lists manufactured grades going down with the corresponding production tons by month for each grade going across. We have hundreds of grades; but, only produce a fraction of them. I want my pivot table to show only the grades that have planned production and exclude the grades that have zeros/blanks/dashes for each month of the year. How do I do this? I looked under PivotTable Options, Display; but, don't see where to fix this. The "Show items with no data on rows" and "Show items with no data on columns" options are UNCHECKED and grayed out (I cannot select them). The "Display item labels when no fields are in the values area" is CHECKED and grayed out (I cannot select it).
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Either a column filter or VBA like
VBA Code:
With ActiveSheet.PivotTables("PivotTableNameHere").PivotFields("NameOfField")
   .PivotItems("(blank)").Visible = False
End With
 
Upvote 0

Forum statistics

Threads
1,214,614
Messages
6,120,520
Members
448,968
Latest member
Ajax40

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