Excel VBA - 如何插入没有公式的普通值?
我浏览了许多 Excel VBA 主题,但是,我没有找到任何有关插入普通值的信息 - 在本例中是 SUM()
的结果 - 而不是公式。有一个方法,PasteSpecial xlPasteValues
,但似乎不是我要找的。
以下代码示例插入公式,而不仅仅是值:
Sub test()
Range("A4").Value = "=SUM(A1:A3)"
End Sub
How do I insert plain value without the Formula in Excel VBA?
I have skimmed many Excel VBA topics, however, I have not found any information about inserting plain values - the result of SUM()
in this case - not formula. There is a method, PasteSpecial xlPasteValues
, but it seems that it is not what I am looking for.
The following code example inserts the formula, not only the value:
Sub test()
Range("A4").Value = "=SUM(A1:A3)"
End Sub
How do I insert plain values without the formula in Excel VBA?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是我的想法,您正在寻找
Here is what I think, you are looking for
您想要
SUM
的实际结果吗?我会尝试使用WorksheetFunction.Sum
例如Are you wanting to the actual result of the
SUM
? I would try usingWorksheetFunction.Sum
eg