Excel宏-for循环增量
我已经看过但找不到解决方案。
如何增加变量?与任何其他语言一样,您只需在循环结束之前执行 ++(变量名称)即可。在我的示例中,我想增加 J。
Dim j as integer
j = 13
FinalRow = Range("B15").End(xlUp).Row
For i = 9 To FinalRow
Range("B" & i).Copy Destination:=Sheets("Design").Range("A" & j)
J++
Next i
代码从 B9-B15 循环,并将信息从 A13 向下粘贴到设计表中。
I've looked but can't find a solution.
How do you increment a variable? Like in any other language you just do ++(variable name) just before the end of the loop. In my example, I'd like to increment J.
Dim j as integer
j = 13
FinalRow = Range("B15").End(xlUp).Row
For i = 9 To FinalRow
Range("B" & i).Copy Destination:=Sheets("Design").Range("A" & j)
J++
Next i
The code loops from B9-B15 and pastes the information in the Designsheet from A13 and downwards.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需这样做:
简单。
Just do this:
Simples.