如果条件为真,我正在试图找出如何退出for的内容。这可能是代码:
For p = 0 to number
count = 0
For pp = p to othernumber
If somevalue = j then
count = 1
else
If count = 1 then
'code that make it jump over the Next pp (*)
end if
End if
Next pp
'(*) HERE I WANT TO START IF THE CONDITION IS TRUE
Next p
欢迎任何帮助
我的真实代码是不同的,有更多的条件,但有了这个,我可能会开始弄明白了!