将一个 Excel 文件中的总和复制到另一个 Excel 文件
我有一个文件(第 1 册),其中有一列数字和一个对它们进行求和的公式。我需要将该总和从 Book 1 复制到 Book 2、Book 3 等中的单元格。我最终复制并移动了公式,而不是总和本身。
Sub CopyInfo()
experiment1.Range("F7").Value = experiment2.Range("I5").Value
experiment1.Range("F7").Copy
experiment2.Range("I5").Paste
Application.CutCopyMode = False
End Sub
我正在尝试从“experiment1”复制到“experiment2”。
I have one file (Book 1) with a column of numbers and a formula to sum them up. I need to copy that sum from Book 1 to a cell in Book 2, Book 3, etc. I end up copying the formula and moving it, not the sum itself.
Sub CopyInfo()
experiment1.Range("F7").Value = experiment2.Range("I5").Value
experiment1.Range("F7").Copy
experiment2.Range("I5").Paste
Application.CutCopyMode = False
End Sub
I'm trying to copy from "experiment1" to "experiment2".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不要使用粘贴,而是使用 PasteSpecial,如下所示:
这将粘贴计算值而不是公式。
Instead of Paste, use PasteSpecial like this:
This will paste the calculated value instead of the formula.
做一个过去的特别节目,这样你就会:
Do a past special, so you would have: