Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望我可以使用这样的代码: Worksheets("Sheet2").PivotTables("PivotTable3").PivotFields("Name").Visible = True 但它不起作用。我不断收到错误消息:“运行时错误 438 对象不支持此属性或方法。
Worksheets("Sheet2").PivotTables("PivotTable3").PivotFields("Name").Visible = True
简单地说,我想选中数据透视表字段列表中字段名称旁边的特定框。知道我该怎么做吗?
谢谢!
使用PivotTable.AddFields方法
Worksheets("Sheet2").PivotTables("PivotTable3").AddFields("Name")