PivotValueCell 对象 (Excel)
提供一种在实际单元格 (Range 对象) 不可用的情况下公开单元格值的方法。
示例
此代码示例使用 PivotValueCell 属性测试数据透视表中一个单元格的值是否大于另一个单元格。
Sub TestEquality()
Dim X As Double
Dim Y As Double
'This code assumes that you have a Standalone PivotChart on one of the worksheets.
X = ThisWorkbook.PivotTables(1).PivotValueCell(1, 1).Value
Y = ThisWorkbook.PivotTables(1).PivotValueCell(1, 2).Value
If X > Y Then
MsgBox "X is greater than Y"
Else
MsgBox "Y is greater than X"
End If
End Sub
方法
属性
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。