Debug - Step Over

At design time:

Ribbon bar. Select the Debug tab. In the Step group, click Over to begin running the macro in break mode.

Classic menus. From the Debug menu, select Step Over to begin running the macro in break mode.

Selecting Step Over again will execute the currently paused line of code and move the focus to the next line (without executing it). If an external function is called, that function will be stepped over, meaning that it will execute without being stepped through. This command is useful for skipping over external functions that have already been debugged.

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