Excel 2007 Sum 可变长度列
我正在尝试创建一个宏来对可变长度列求和。我尝试了一些不同的方法,但没有成功。我想要做的是:
如果活动单元格是单元格 B17,我希望 B17 等于 B1 到 B16 的总和。 同样,如果活动单元格是单元格 D22,我希望 D22 等于 D1 到 D21 的总和。
所以基本上它是对选定列中活动单元格上方的所有单元格进行求和。
谢谢, 詹姆斯.
I'm trying to make a macro to sum a variable length column. I've tried a few different things but they haven't worked. What I want to do is:
If the active cell is cell B17, I'd like B17 to equal the sum of B1 to B16.
Similarly if the active cell is cell D22, I'd like D22 to equal the sum of D1 to D21.
So basically it is summing all the cells above the active cell, in the selected column.
Thanks,
James.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
<代码>
=SUM(R1C:R[-1]C)
还是我遗漏了什么?=SUM(R1C:R[-1]C)
or am I missing something?宏可以单击 [sum] 工具栏按钮(有趣的 E - sigma)并按 Enter 键吗?
Can a macro click the [sum] toolbar button (the funny E - sigma) and press enter?
尝试这个并针对特殊情况进行调整(第 1 行等..)
Try this and tweak for special cases (row 1 etc..)