将一张工作表的某个范围复制到另一张工作表中的某个指定单元格
Workbooks(1).Worksheets(1).Copy after:=wb2.Sheets(1)
上面的代码总是覆盖以前的内容,但这不是我想要的。 如何将特定范围复制到特定单元格中的其他工作表。
我必须复制的示例
sheet1.range("A5:B12") set of values to sheet2.range("A4")
我发现
selection.copy and activesheet.paste ' but this is not i want
我想要一个副本和目标示例。我已经在谷歌上搜索了很长时间,但无法找到文档和来源。有人可以帮我吗?
Workbooks(1).Worksheets(1).Copy after:=wb2.Sheets(1)
The above code always overwrites the previous contents but That is not what i want.
How do I copy a certain range to other sheet at a particular cell.
Example I have to copy
sheet1.range("A5:B12") set of values to sheet2.range("A4")
I found
selection.copy and activesheet.paste ' but this is not i want
I want a copy and destination example . I have been googling it from long time but unable to find out the documents and source. Can anyone please help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)