gpt4 book ai didi

excel - 如何用 lastrow+1 和 lastrow+2 求和

转载 作者:行者123 更新时间:2023-12-04 22:24:45 24 4
gpt4 key购买 nike

我在 VBA 中有一个宏,我希望我的单元格 B199(我的代码中的 lastrow-2)返回我的单元格 B200(我的代码中的 lastrow-1)和单元格 B201(我的代码中的 lastrow)的总和。不幸的是,它不起作用,因为通过运行我的宏,公式在单元格 B199 中返回错误:#NAME?

显然,问题出在我的代码中:"=SUM(lastrow-1&lastrow )"
请在下面找到我的代码,如果有人可以帮助我,那就太好了。谢谢哈维

enter image description here

Sub fgdjkgfjbbg2222()
Dim lastrow As Long
lastrow = Worksheets("youpi").Range("B" & Rows.Count).End(xlUp).Row
Worksheets("youpi").Activate
Range("B" & lastrow - 2).Value = "=SUM(lastrow-1&lastrow )"
End Sub

最佳答案

如果我理解,您正在尝试根据您在 B 列中作为 LastRow 获得的值对 B 列中的值求和。

在VBA的公式中,需要用到变量,如下:

Range("B" & lastrow - 2).Value = "=SUM(B" & lastrow - 1 & ":B" & lastrow & ")"

关于excel - 如何用 lastrow+1 和 lastrow+2 求和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58958037/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com