CalculatedMember.IsValid property (Excel)
Returns a Boolean that indicates whether the specified calculated member has been successfully instantiated with the OLAP provider during the current session.
Syntax
expression.IsValid
expression A variable that represents a CalculatedMember object.
Remarks
This property returns True even if the PivotTable is not connected to its data source. Make sure that the PivotTable is connected before querying the value of the IsValid property.
Example
This example notifies the user about whether the calculated member is valid. It assumes that a PivotTable exists on the active worksheet.
Sub CheckValidity()
Dim pvtTable As PivotTable
Dim pvtCache As PivotCache
Set pvtTable = ActiveSheet.PivotTables(1)
Set pvtCache = Application.ActiveWorkbook.PivotCaches.Item(1)
' Make connection for PivotTable before testing IsValid property.
pvtCache.MakeConnection
' Check if calculated member is valid.
If pvtTable.CalculatedMembers.Item(1).IsValid = True Then
MsgBox "The calculated member is valid."
Else
MsgBox "The calculated member is not valid."
End If
End Sub
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.