PivotField.PropertyParentField プロパティ (Excel)
プロパティがその内部に付属するフィールドを表す PivotField オブジェクトを返します。
構文
式。PropertyParentField
式PivotField オブジェクトを表す変数。
注釈
メンバー プロパティ フィールドであるフィールドにのみ有効です。
IsMemberProperty プロパティが False の場合、PropertyParentField プロパティを使用すると実行時エラーが返されます。
例
次の使用例は、4 番目のフィールドにメンバー プロパティがあるかどうかを判断し、存在する場合は、プロパティが関連するフィールドを決定します。 結果に応じて、Excel からユーザーに通知されます。 この例では、作業中のワークシートにピボットテーブルが存在し、それがオンライン分析処理 (OLAP) データ ソースに基づいていると想定しています。
Sub CheckParentField()
Dim pvtTable As PivotTable
Dim pvtField As PivotField
Set pvtTable = ActiveSheet.PivotTables(1)
Set pvtField = pvtTable.PivotFields(4)
' Check for member properties and notify user.
If pvtField.IsMemberProperty = False Then
MsgBox "No member properties present."
Else
MsgBox "The parent field of the members is: " & _
pvtField.PropertyParentField
End If
End Sub
サポートとフィードバック
Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。