From 循环中的迭代

发布于 2024-09-19 00:13:37 字数 103 浏览 3 评论 0原文

有没有办法在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 技术交流群。

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

发布评论

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

评论(2

卷耳 2024-09-26 00:13:37

您可以使用STEP

for x = 0 to 100 step 10

next x

这将引导您完成0、10、20...100

因为您想从1开始并转到< code>1, 10, 20... 100,这里稍作修改

for x = 0 to 100 step 10
    if x = 0 then 
        y = 1 
    else
        y = x
    end if

    '// use y in all calculations downstream instead of x

next x

You can use STEP:

for x = 0 to 100 step 10

next x

This will take you through 0, 10, 20... 100

Since you want to start at 1 and go 1, 10, 20... 100, here is a slight modification

for x = 0 to 100 step 10
    if x = 0 then 
        y = 1 
    else
        y = x
    end if

    '// use y in all calculations downstream instead of x

next x
旧人九事 2024-09-26 00:13:37
For y = 0 To 10
    If y = 0 Then x = 1 Else x = 10 * y

    ' do stuff with x

Next y
For y = 0 To 10
    If y = 0 Then x = 1 Else x = 10 * y

    ' do stuff with x

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