CubeField.ShowInFieldList 属性 (Excel)
如果设置为 True(默认),则字段列表中将显示一个 CubeField 对象。 读/写 Boolean。
语法
表达式。ShowInFieldList
表达 一个代表 CubeField 对象的变量。
示例
在本示例中,Microsoft Excel 决定是否能在字段列表中显示 CubeField 对象,并通知用户。 此示例假定活动工作表上存在数据透视表,并且 存在 CubeField 对象。
Sub IsCubeFieldInList()
Dim pvtTable As PivotTable
Dim cbeField As CubeField
Set pvtTable = ActiveSheet.PivotTables(1)
Set cbeField = pvtTable.CubeFields("[Country]")
' Determine if a CubeField can be seen.
If cbeField.ShowInFieldList = True Then
MsgBox "The CubeField object can be seen in the field list."
Else
MsgBox "The CubeField object cannot be seen in the field list."
End If
End Sub
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。