EnableMultiplePageItems Property

Microsoft Excel Visual Basic

expression.EnableMultiplePageItems

expression    Required. An expression that returns a CubeField object.

Remarks

This property only applies to Online Analytical Processing (OLAP) PivotTables. Querying or setting a non-OLAP PivotTable will result in a run-time error.

Example

This example determines if multiple page items are enabled for the cube field and notifies the user. The example assumes that an OLAP PivotTable exists on the active worksheet.

Sub UseMultiplePageItems()

    Dim pvtTable As PivotTable
    Dim cbeField As CubeField

    Set pvtTable = ActiveSheet.PivotTables(1)
    Set cbeField = pvtTable.CubeFields("[Country]")

    ' Determine setting for mulitple page items.
    If cbeField.EnableMultiplePageItems = False Then
        MsgBox "Mulitple page items cannot be selected."
    Else
        MsgBox "Multiple page items can be selected."
    End If

End Sub