CubeField.HierarchizeDistinct property (Excel)

Returns or sets whether to order and remove duplicates when displaying the specified named set in a PivotTable report based on an OLAP cube. Read/write.

Syntax

expression.HierarchizeDistinct

expression A variable that represents a CubeField object.

Return value

Boolean

Remarks

True if the named set is displayed as ordered with duplicates removed; otherwise, False.

The value of this property corresponds to the setting of the Automatically order and remove duplicates from the set check box on the Layout & Print tab of the Field Settings dialog box for a named set in a PivotTable report based on an OLAP cube.

This property returns an error if the CubeFieldType property of the specified CubeField object is not xlSet (XlCubeFieldType enumeration).

Example

The following code example sets the HierarchizeDistinct property to True to order and remove duplicates from the specified named set.

ActiveSheet.PivotTables("PivotTable1").CubeFields("[Summary P&L]"). _ 
 HierarchizeDistinct = True

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.