Where Does Debug Print Statement Go To In VBA

Опубликовано: 27 Апрель 2026
на канале: Ctrl-Shift-Run
3,348
16

Instead of printing the output one at a time using Message Box, Debug.Print allows you to view the output all the output from the code at the end of execution.

But where does the output go? By default the Immediate Window is not shown in the VBA Editor.

You can enable it by either pressing CTRL-G or going to View...Immediate Window. Happy debugging!