从VBA中的数据透视表字段列表中删除数据透视字段

发布于 2024-11-13 08:48:00 字数 64 浏览 2 评论 0原文

是否可以在VBA代码中从数据透视表字段列表中删除数据透视字段?

我使用的是 Excel 2007。

Is it possible to delete pivot field from pivot table field list in VBA code?

I am using Excel 2007.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

薄荷港 2024-11-20 08:48:00

我已经很长时间没有使用 Excel + VBA 了,但是你是否尝试过类似的操作:

Dim pvtField As Excel.PivotField
Dim pvtItem As Excel.PivotItem
For Each pvtField In pvtTable.PivotFields 
    For Each pvtItem In pvtField.PivotItems 
        pvtItem.Delete 
    Next 
Next 

I haven't worked for a long time with Excel + VBA, but have you tried something like:

Dim pvtField As Excel.PivotField
Dim pvtItem As Excel.PivotItem
For Each pvtField In pvtTable.PivotFields 
    For Each pvtItem In pvtField.PivotItems 
        pvtItem.Delete 
    Next 
Next 
请恋爱 2024-11-20 08:48:00

此代码应该可以从数据透视表中删除字段。

    ActiveSheet.PivotTables("Name of Table").PivotFields( _
    "Name of Field").Orientation = xlHidden

This code should work to delete a field from the pivot table.

    ActiveSheet.PivotTables("Name of Table").PivotFields( _
    "Name of Field").Orientation = xlHidden
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文