From 循环中的迭代
有没有办法在vba中这样说:
from x = 1 to 100, by 10
这样x的值为1、10、20、30等到100?
is there a way to say in vba something like:
from x = 1 to 100, by 10
so that the x's are 1, 10, 20, 30, etc. to 100?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用STEP:
这将引导您完成
0、10、20...100
,因为您想从
1
开始并转到< code>1, 10, 20... 100,这里稍作修改You can use STEP:
This will take you through
0, 10, 20... 100
Since you want to start at
1
and go1, 10, 20... 100
, here is a slight modification