Exit Sub And Call another Sub

4.4k Views Asked by At

I have two subs, sub1 and sub2. I want to exit sub1 completely and start sub2 if a condition is satisfied. My attempt is (running from :

sub1
.
.
If x=y Then
    Exit Sub And Call sub2
End If
.
.
End Sub
1

There are 1 best solutions below

4
On BEST ANSWER

but you're so close!

sub1
.
.
If x=y Then
    Call sub2
    Exit Sub
End If
.
.
End Sub