在Excel VBA中动态查找单元格范围的总和数值。

huangapple go评论66阅读模式
英文:

Dynamically find the sum values of range of cells in Excel VBA

问题

请问如何使用Excel宏动态查找每一行的总付款,直到最后一个非空行?

即将单元格("B2"、"C2"、"D2")的总和存储在单元格("E2"),然后重复这个操作直到最后一个非空行。请参阅上面的工作表。

英文:

Please how can find the Total Payment for each of the rows dynamically till the last non-empty row using Excel macro?

That is storing the sum of Cell ("B2", "C2", 'D2") in Cell("E2), the same with next row till the end non-empty row. See the above sheet.

答案1

得分: 0

抱歉,但我看不到任何表格。尝试检查此宏是否适用于您。

Sub Sum_Total_LastNONemptycell()

    Dim i As Integer
    
    For i = 2 To Range("B1000000").End(xlUp).Row
        Range("E" & i).Value = WorksheetFunction.Sum(Range("B" & i).Value, Range("C" & i).Value, Range("D" & i).Value)
    Next i
    
End Sub
英文:

Sorry, but i can't see any sheet here. Still i tried check this Macro if it works for you.

Sub Sum_Total_LastNONemptycell()

Dim i As Integer

For i = 2 To Range("b1000000").End(xlUp).Row
    Range("E" & i).Value = WorksheetFunction.Sum(Range("B" & i).Value, Range("C" & i).Value, Range("D" & i).Value)
Next i

End Sub

huangapple
  • 本文由 发表于 2023年5月15日 04:23:22
  • 转载请务必保留本文链接:https://go.coder-hub.com/76249525.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定