作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 VBA 中有一个宏,我希望我的单元格 B199(我的代码中的 lastrow-2)返回我的单元格 B200(我的代码中的 lastrow-1)和单元格 B201(我的代码中的 lastrow)的总和。不幸的是,它不起作用,因为通过运行我的宏,公式在单元格 B199 中返回错误:#NAME?
显然,问题出在我的代码中:"=SUM(lastrow-1&lastrow )"
请在下面找到我的代码,如果有人可以帮助我,那就太好了。谢谢哈维
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/
我是一名优秀的程序员,十分优秀!