To do that, the cleanest way is to use a loop, eg:
Code:
Dim example As Integer

Do 
  example = 1 + 2
Loop While example = 3
There are other ways, but this is almost always the best... partly because it makes it clear where you are jumping back to, and also when you are going to do it.