如何将 I 列到 M 列的数据复制到下一个工作表,然后紧接着 P 列到 T 列的数据?

发布于 2024-11-16 17:50:07 字数 198 浏览 6 评论 0原文

我是新用户,所以无法发布工作表的图片。对此感到抱歉。

我希望你能理解我在这些基础上描述的工作表。

该表的外观如下。 我必须将 I 至 M 列中的值复制到下一个名为 Consolidated 的工作表中。 P 至 T 列的值应紧随其后。

还应注意,要复制的数据在 D 至 F 列中具有相应的值

。感谢您花时间阅读本文。

I'm a new user so I can't post a picture of the worksheet. Sorry for that.

I hope you understand the worksheet I'm describing baswd on these.

Here's how the sheet looks like.
I have to copy the values in columns I to M into the next sheet named Consolidated. The values from columns P to T should follow immediately.

It should also take note that the data to be copied has corresponding values in columns D to F.

Thank you for taking time to read this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

温折酒 2024-11-23 17:50:07

这会将 Sheet1 中的 I 列复制到 M 列,并将它们粘贴到 Consolidated 中,以便 P 列到 T 列紧跟在复制的列之后

Sub CopyColumns()
    Worksheets("Sheet1").Columns("I:M").Copy Destination:=Worksheets("Consolidated").Columns("K:O")
End Sub

这是所需要的吗?

This will copy columns I to M in Sheet1 and paste them to Consolidated so that columns P to T come immediately after the copied columns

Sub CopyColumns()
    Worksheets("Sheet1").Columns("I:M").Copy Destination:=Worksheets("Consolidated").Columns("K:O")
End Sub

Is that what was required?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文