我有以下代碼持續循環
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)**
'// other code to copy past and do various stuff
Next x
所以我想我可以簡單地聲明Then Next x
,但是這給了「不爲語句聲明」的錯誤。
那麼我可以在If instr(sname, "Configuration item") Then
之後放什麼來使它進入x的下一個值呢?
謝謝你們糾正我拼寫錯誤,我知道我吮吸它,並且很感激人們會花時間幫助我。歡呼聲 – DevilWAH 2013-11-20 13:59:00