Excel 2007 Sum 可变长度列

发布于 2024-08-11 02:59:32 字数 201 浏览 1 评论 0原文

我正在尝试创建一个宏来对可变长度列求和。我尝试了一些不同的方法,但没有成功。我想要做的是:

如果活动单元格是单元格 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 技术交流群。

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

发布评论

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

评论(4

微凉徒眸意 2024-08-18 02:59:32

<代码>

Sub MakeSum()

If ActiveCell.Row > 1 Then
    ActiveCell.FormulaR1C1 = "=SUM(R1C:R[-1]C)"
End If

结束子

Sub MakeSum()

If ActiveCell.Row > 1 Then
    ActiveCell.FormulaR1C1 = "=SUM(R1C:R[-1]C)"
End If

End Sub

往事风中埋 2024-08-18 02:59:32

=SUM(R1C:R[-1]C) 还是我遗漏了什么?

=SUM(R1C:R[-1]C) or am I missing something?

花开半夏魅人心 2024-08-18 02:59:32

宏可以单击 [sum] 工具栏按钮(有趣的 E - sigma)并按 Enter 键吗?

Can a macro click the [sum] toolbar button (the funny E - sigma) and press enter?

怪我闹别瞎闹 2024-08-18 02:59:32

尝试这个并针对特殊情况进行调整(第 1 行等..)

Public Sub abcd()
  Dim rw As Long
  Dim cl As Long
  Dim s As Double
  Dim rng As Range

  rw = ActiveCell.Row
  cl = ActiveCell.Column
  Set rng = Range(Cells(1, cl), Cells(rw - 1, cl))

  s = Application.WorksheetFunction.Sum(rng)
  MsgBox s
  ActiveCell.Value = s
End Sub

Try this and tweak for special cases (row 1 etc..)

Public Sub abcd()
  Dim rw As Long
  Dim cl As Long
  Dim s As Double
  Dim rng As Range

  rw = ActiveCell.Row
  cl = ActiveCell.Column
  Set rng = Range(Cells(1, cl), Cells(rw - 1, cl))

  s = Application.WorksheetFunction.Sum(rng)
  MsgBox s
  ActiveCell.Value = s
End Sub
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文