Share via


CubeField.EnableMultiplePageItems Property

Excel Developer Reference

Set to True to allow multiple items in the page field area for OLAP PivotTables to be selected. The default value is False. Read/write Boolean.

Syntax

expression.EnableMultiplePageItems

expression   A variable that represents a CubeField object.

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.

Visual Basic for Applications
  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.<strong class="bterm">EnableMultiplePageItems</strong> = False Then
    MsgBox "Mulitple page items cannot be selected."
Else
    MsgBox "Multiple page items can be selected."
End If

End Sub

See Also