Excel VBA:输出不同值和小计
我有这种形式的数据:
Category Source Amount
Dues FTW $100
Donations ODP $20
Donations IOI $33
Dues MMK $124
没有排序顺序。这些类别在编译时是未知的。我想要一个 VBA 宏循环遍历范围,输出不同值的列表,以及每个值的小计。对于上面的数据,它看起来像这样:
Category Total Amount
Dues $224
Donations $55
我该怎么做?另外,有没有办法让宏在每次更新上表时运行,或者用户是否需要单击按钮?
I have data of this form:
Category Source Amount
Dues FTW $100
Donations ODP $20
Donations IOI $33
Dues MMK $124
There is no sort order. The categories are unknown at compile time. I want a VBA macro to cycle through the range, output a list of distinct values, with the subtotals for each. For the above data, it would look like this:
Category Total Amount
Dues $224
Donations $55
How can I do this? Also, is there a way to make the macro run every time the table above is updated, or is it necessary for the user to click a button?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要使用内置的 Excel 功能来执行此操作。如果您有很多值需要循环,则循环可能会花费很长时间并且会出现问题。
类似以下内容可能会帮助您开始创建数据透视表(来自 http://www .ozgrid.com/News/pivot-tables.htm)
这是用于小计的(尽管我更喜欢数据透视表)
http://msdn.microsoft.com/en-us /library/aa213577(office.11).aspx
编辑:
我重读并有以下想法。在单独的工作表上设置数据透视表(不使用任何代码),然后将以下代码放在具有数据透视表的工作表上,以便每次选择工作表时该表都会更新。
编辑#2
刷新工作表上的所有数据透视表
http://www.ozgrid.com/VBA/pivot-table-refresh。 htm
该链接有多个关于如何刷新工作表/工作簿中的数据透视表的选项。
You may want to use a built in Excel feature to do this. Looping can take a long time and be problematic if you have a lot of values to loop through.
Something like the following might get you started on creating a pivot table (from http://www.ozgrid.com/News/pivot-tables.htm)
This is for subtotals (though I much prefer pivot tables)
http://msdn.microsoft.com/en-us/library/aa213577(office.11).aspx
EDIT:
I reread and have the following thoughts. Set up the pivot table on a separate sheet (without using any code) then put the following code on the sheet that has the pivot table so that the table will update everytime the sheet is selected.
Edit #2
Refresh all pivot tables on sheet
http://www.ozgrid.com/VBA/pivot-table-refresh.htm
The link has multiple options on how to refresh pivot tables in the sheet/workbook.