gpt4 book ai didi

Excel VBA : "For" and "If" statement on a single line?

转载 作者:行者123 更新时间:2023-12-04 19:53:25 25 4
gpt4 key购买 nike

是否有可能在 VBA 中放置 ForIf在一行中声明?
我能得到的最接近的是:

For i = 0 To n: If a = i Then a = b
Next i

如果我写:
For i = 0 To n: If a = i Then a = b: Next i

我得到“ Next without For ”错误。

最佳答案

您可以使用 IIf ,而不是 If .

此代码不会引发错误:

For i = 0 To n: IIf a = i, a = b, False: Next i

关于Excel VBA : "For" and "If" statement on a single line?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38477377/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com