在 Excel 2003 中将行从一个选项卡复制到另一个选项卡
如何编写宏以一次将 43 行复制到另一个选项卡中进行处理,并循环执行第 1 行到第 4300 行(AP 列)的例程?对每个粘贴范围进行的处理是根据粘贴的单元格执行计算,并通过另一个宏在附加表中捕获结果。我使用的是 MS Excel 2003。
How can I code a macro to copy 43 rows at a time into another tab for processing and loop through the routine for Row 1 through Row 4300 (Columns A-P)? The processing done with each pasted range is executing calculations based on the pasted cells and capturing the results in an appended table through another macro. I am using MS Excel 2003.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下代码将以 43 行块的形式将 Sheet1 中的数据粘贴到 Sheet2 中,例如 A1:P43、A44:A86 等。
The following code will paste data from Sheet1 in blocks of 43 rows into Sheet2 e.g. A1:P43, A44:A86 etc.