View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Hari Prasadh[_2_] Hari Prasadh[_2_] is offline
external usenet poster
 
Posts: 83
Default Jump to the next count in a FOR Loop

Hi,

I have

For I = 1 to 67

If ..... then
'Here I would like to go to the next Count in I and skip the
execution of code till -- Next I --
End if
'.....
' Some code
'Some code
'....
'...

Next I


Please tell me what I should put inside the If statement so that I could
accomplish the above. I cannot use -- Exit For -- as I dont want to stop the
executon of loop abruptly.

Thanks a lot,
Hari
India