gpt4 book ai didi

vba - 继续For循环

转载 作者:行者123 更新时间:2023-12-03 05:45:06 28 4
gpt4 key购买 nike

我有以下代码:

For x = LBound(arr) To UBound(arr)

sname = arr(x)
If InStr(sname, "Configuration item") Then
'**(here I want to go to next x in loop and not complete the code below)**
End If

'// other code to copy past and do various stuff

Next x

我以为我可以简单地使用语句 Then Next x,但这会产生“没有声明 for 语句”错误。

我可以在 If InStr(sname, "Configuration item") Then 之后放置什么以使其继续执行 x 的下一个值?

最佳答案

您可以使用GoTo:

Do

'... do stuff your loop will be doing

' skip to the end of the loop if necessary:
If <condition-to-go-to-next-iteration> Then GoTo ContinueLoop

'... do other stuff if the condition is not met

ContinueLoop:
Loop

关于vba - 继续For循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5895908/

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