PivotCell.CustomSubtotalFunction プロパティ (Excel)
PivotCell オブジェクトのユーザー設定の小計関数フィールド設定を返します。 読み取り専用 XlConsolidationFunction。
構文
式。CustomSubtotalFunction
式PivotCell オブジェクトを表す変数。
注釈
CustomSubtotalFunction プロパティは、PivotCell オブジェクトの種類がカスタム小計でない場合にエラーを返します。 このプロパティは、OLAP 以外の元データに対してのみ適用されます。
例
この例では、セル C20 に count の統合関数を使用するカスタム小計関数が含まれているかどうかを判断し、ユーザーに通知します。 次の使用例では、アクティブ ワークシートにピボットテーブルがあるものとします。
Sub UseCustomSubtotalFunction()
On Error GoTo Not_A_Function
' Determine if custom subtotal function is a count function.
If Application.Range("C20").PivotCell.CustomSubtotalFunction = xlCount Then
MsgBox "The custom subtotal function is a Count."
Else
MsgBox "The custom subtotal function is not a Count."
End If
Exit Sub
Not_A_Function:
MsgBox "The selected cell is not a custom subtotal function."
End Sub
サポートとフィードバック
Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。