从不同工作表复制行
如何复制工作表中的多行并将其进一步粘贴,包括背景颜色等任何格式以及行中已有的所有值?
我尝试使用此代码片段
Application.Worksheets("IPL").Select
Rows("6:9").Select
Application.CutCopyMode = False
Selection.Copy
Application.Worksheets("CMM").Select
Rows("13:13").Select
Selection.Insert Shift:=xlDown
但是当我尝试执行此代码时,出现应用程序错误。我尝试了一些其他示例,但它们似乎并没有达到我想要的效果...
有什么帮助吗?
How can I copy multiple rows in a worksheet and paste them further down, including any formatting like background colors and all the values already in the rows?
I tried using this snippet
Application.Worksheets("IPL").Select
Rows("6:9").Select
Application.CutCopyMode = False
Selection.Copy
Application.Worksheets("CMM").Select
Rows("13:13").Select
Selection.Insert Shift:=xlDown
But when I try to execute this, I get an application error. I tried some other examples but they don't seem to do the same what I want...
Any help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我简化了您的代码(记录器的代码总是充满不必要的“选择”)并且它工作得很好,即使跨工作表!
I simplified your code (the recorder's code is always full of unnecessary "selects") and it works fine, even across sheets !