Or you may use Exit Sub/Function statement

VB Code:
  1. If Check1 = 1 Then 'if this is true i want it to stop
  2.     Check1 = 0
  3.     check2 = 1
  4.     Exit Sub
  5. End If 'here
  6. If check2 = 1 Then
  7.     check2 = 0
  8.     Check3 = 1
  9. End If
  10. If Check3 = 1 Then
  11.     Check3 = 0
  12.     check4 = 1
  13. End If
  14. End Sub

Pradeep