PivotField.AutoShowField 属性 (Excel)

返回数据字段的名称,该字段用于判断在指定数据透视表字段中自动显示的是首项还是末项。 只读 String

语法

表达式AutoShowField

表达 一个代表 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 支持和反馈,获取有关如何接收支持和提供反馈的指南。