How to find and display a hidden module in VBA

I have a module hidden in my VBA code that I would like to get to debug it, but don’t know how to find and show it. How to do it?

+4
source share
3 answers

Tools> Macros> Visual Basic Editor

+1
source

Alt-f11

then expand the Modules folder.

+1
source

If you have hidden all the menus located on the sides of the VBA window, you can display them:

View - Project Explorer (Ctrl + R)

View - Properties Window (F4)

+1
source

All Articles