Share via

Excel 2010 :: Pivot table options :: Display tab

Anonymous
2011-03-17T04:26:52+00:00

how can I select the option to "show items with no data on rows" or "show items with no data on columns"

It is greyed out and does not allow me to click it?

Microsoft 365 and Office | Excel | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

4 answers

Sort by: Most helpful
  1. Anonymous
    2013-03-28T18:52:35+00:00

    Or, much more easily, you can just:

    1. Right click on any of the row labels (NOT data cells, the actual labels)
    2. Select Field Settings from the context menu
    3. Click on the Layout&Print tab
    4. Select the show items with no data checkbox
    5. Click OK

    Refresh the table and, presto, your empty data shows up.

    4 people found this answer helpful.
    0 comments No comments
  2. Anonymous
    2011-03-17T16:55:09+00:00

    You can create the following VBA procedures; they will do the work for you.

    DisplayEmptyMembers() displays the items with no data and HideEmptyMembers()

    hides the items with no data in the pivot table "PivotTable1".

    Sub HideEmptyMembers()

    Dim pvtTable As PivotTable

    Set pvtTable = ActiveSheet.PivotTables("PivotTable1")

    pvtTable.DisplayEmptyColumn = False

    pvtTable.DisplayEmptyRow = False

    pvtTable.RefreshTable

    End Sub

    Sub DisplayEmptyMembers()

    Dim pvtTable As PivotTable

    Set pvtTable = ActiveSheet.PivotTables("PivotTable1")

    pvtTable.DisplayEmptyColumn = True

    pvtTable.DisplayEmptyRow = True

    pvtTable.RefreshTable

    End Sub

    4 people found this answer helpful.
    0 comments No comments
  3. Anonymous
    2014-12-10T12:48:58+00:00

    Yes, this worked for me as well - except where I am calculating averages - showing the columns without data changes the averages :(

    Is there a way to tell a pivot table to ignore the zero entries in some cases?  I have a pivot table which calculates the Average Days To Close on Sales Leads. However, if there are zero leads that closed that month (in some obscure bucket of lead title) then the average is skewed greatly.

    0 comments No comments
  4. Anonymous
    2011-08-31T22:39:26+00:00

    The classic PivotTable view doesn't exist?

    0 comments No comments