How do you set a switchboard to select different queries?
Your best bet, for the long run, would be to scrap the built-in
switchboard for one of your own making, using command buttons. You'll
have better control of it's functionality and appearance. Had you been
using your own switchboard, you would not have needed to ask this
question.
The built-in switchboard does not directly support running queries.
However, if you create a Public sub-procedure (in a module), you can
then use the switchboard manager to set the command line to Run Code
using the procedure name where indicated.
The code to be used within in the procedure is:
DoCmd.OpenQuery "QueryNameHere"
Or you can create a macro set to the OpenQuery action, and use the
manager to set the command line to Run Macro.