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
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
Copyright © 2021 Jogjafile Inc.
but you're so close!