• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

How to find all hidden vba and macros code

Clarence

There is no such things as hidden VBA or Macro code
All VBA/Macro code is available via the VBE System accessed via Alt F11
Code may be locked so that you can't view it but it is all there.
If you goto the VBE System using Alt F11 you should see a window similar to this:

upload_2014-9-14_10-38-2.png

If you don't use Ctrl R to bring it up

VBA code can be in any of the objects in the
+ Microsoft Excel Objects (Workbook and Worksheet Objects)
+ Forms (User Forms)
+ Modules (VBA Subroutines and Function Code)
+ Class Modules (Class Modules)

You need to look in each of these and the sub objects

A workbook doesn't necessarily need to have all of the above objects and only may have one or more
 
Back
Top