XL5: Error:"Unable to Set Visible Property PivotItem class"

ID: Q114822


The information in this article applies to:
  • Microsoft Excel for Windows, version 5.0


SYMPTOMS

When you run a recorded Visual Basic, Applications Edition, macro to set up a pivot table in which discontiguous items are hidden in the PivotTable Field dialog box, you may receive the following error message:

Unable to set the Visible property of the PivotItem class


CAUSE

Only contiguous items in a PivotTable Field can be hidden.


STATUS

Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. This problem was corrected in Microsoft Excel for Windows version 5.0c.


WORKAROUND

To work around this problem, remove or disable (use an apostrophe to comment out) the line or lines that set the visible property of discontiguous items in the field to False; removing or disabling this line will allow your macro to run successfully.

For example, in the following code, you would comment out the fourth line down to disable the code that causes the error:


   With ActiveSheet.PivotTables("PivotTable1").PivotFields("field1")
        .PivotItems("1").Visible = False
        .PivotItems("2").Visible = False
       '.PivotItems("7").Visible = False
   End With 

Additional query words: Hiding Fields

Keywords : kbprg
Version : WINDOWS:5.0
Platform : WINDOWS
Issue type :


Last Reviewed: October 25, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.