Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub Demo()
Dim i As Integer
For i = 1 To 10
If i = 3 Then
i = 4
Else
'Do something else
End If
MsgBox i
Next i
For i = 1 To 10
'Some test here, eg:
If MsgBox("Skip the next item?", vbYesNo) = vbYes Then i = i + 1
MsgBox i
Next i
End Sub