Is there a way to continue a loop in OpenOffice Basic like in other language?
For i = 0 To 10
If i = 5 Then
Continue For # Not working
End If
Next i
I know the Syntax Exit For to break a loop but I have to skip some iterations... Thank you in advance!