Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help! Adding different queries to Report Control source.

Status
Not open for further replies.

arus76

Technical User
Apr 27, 2003
21
US
I am trying to create a report using more than one query as control source. There is not relantionship between the queries. What can I do to add the field from 2 Queries with no relantionship to my report?
I appreciate any help
Thanks
 
How can I set a command button to run 2 or more macros when pressed?
 
Put this VBA code in the On Click of the command button:
DoCmd.RunMacro "macroname1"
DoCmd.RunMacro "macroname2"
. . .

This should do it.


Bob Scriver
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top