PivotField.AutoShowRange 属性 (Excel)
如果顶部项自动显示在指定的数据透视表中,则返回 xlTop常量 ;如果显示底部项,则返回 xlBottom 。 只读 Long。
语法
表达式。AutoShowRange
表达 一个代表 PivotField 对象的变量。
示例
本示例在消息框中显示“Salesman”字段的 AutoShow 参数值。
With Worksheets(1).PivotTables(1).PivotFields("salesman")
If .AutoShowType = xlAutomatic Then
r = .AutoShowRange
If r = xlTop Then
rn = "top"
Else
rn = "bottom"
End If
MsgBox "PivotTable report is showing " & rn & " " & _
.AutoShowCount & " items in " & .Name & _
" field by " & .AutoShowField
Else
MsgBox "PivotTable report is not using AutoShow for this field"
End If
End With
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。