title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
PivotCache.OLAP property (Excel) |
vbaxl10.chm227100 |
|
|
d40d3a71-0a27-c4a6-0c3b-47ab7a1a0e06 |
05/03/2019 |
medium |
Returns True if the PivotTable cache is connected to an Online Analytical Processing (OLAP) server. Read-only Boolean.
expression.OLAP
expression A variable that represents a PivotCache object.
This example determines whether the cache connection is to an OLAP server. The example assumes that a PivotTable exists on the active worksheet.
Sub CheckPivotCache()
' Determine if PivotCache has OLAP connection.
If Application.ActiveWorkbook.PivotCaches.Item(1).OLAP = True Then
MsgBox "The PivotCache is connected to an OLAP server"
Else
MsgBox "The PivotCache is not connected to an OLAP server."
End If
End Sub
[!includeSupport and feedback]