I am trying to add a button to run a macro in Access 2007 to my Quick Access Toolbar (QAT).
In Excel 2007, I have never had an issue. In the Customize Quick Access Toolbar window I can select Macros from Choose Commands From and then all my non-private macros are listed. I can add them to my ribbon.
However, in Access 2007 nothing shows up in this list of Macros. I feel like there is something in the fundamentals of Access and Macros I am missing but not sure what ...
Thanks for your help.
Adding module example saved as TestModule (see screenshots as well). I still feel I am missing something very simple here ... sigh
Option Compare Database
Option Explicit
Public Sub HelloWorld()
MsgBox "Hello world!"
End Sub


Module1andModule2(under the Module group) which are saved with the database and contain my Macros ... but they don't show up in the list ... is that what you meant? – thornomad Nov 19 '12 at 19:24Private, then they probably won't be available in the list; try marking them asPublic. Additionally, if the Module itself is marked withOption Private Module, this may make them unavailable (as well). Perhaps edit your question with information about where the macro's reside, and if possible, post an example macro you're trying to use. – Ƭᴇcʜιᴇ007 Nov 19 '12 at 19:37