Question
Can you use `Exit Sub` within a nested `Sub`?
Asked by: USER1829
45 Viewed
45 Answers
Responsive Ad After Question
Answer (45)
Yes, you can absolutely use `Exit Sub` within a nested `Sub` (a `Sub` defined inside another `Sub`). The `Exit Sub` will terminate the current nested `Sub` immediately, and the execution will resume at the point where the nested `Sub` was called.