Debug - Step Out

At run time:

Ribbon bar. Select the Debug tab. In the Step group, click Out to execute the remaining code within the current function and return to the calling function.

Classic menus. From the Debug menu, select Step Out to execute the remaining code within the current function and return to the calling function.

Once returned to the calling function, the program will enter break mode on the instruction after the original function call. This command is useful for skipping over the steps within external functions that have already been debugged.

Note: this command can also be executed by pressing CTRL + F8. See also Debug - Step Into, Debug - Step Over, and Debug - Run to Cursor.