I have a for loop question on how to move to the next item if a condition is meant (Not Exit the for just move to the next item)
Thanks
Code:
For i to Ubount(array)
if something = something Then
<----- Go to the next item in the for ----->
End if
Do other stuff here if condition isn't meant.
Next
Thanks