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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Inputting info from 3 queries into 1 report

Status
Not open for further replies.

jalge2

Technical User
Feb 5, 2003
105
0
0
US
Hey all. I've got 3 queries that I'm trying to put together into 1 report.

All I want is to be able to add 3 text boxes to a report and make the control source of each text box = the Field in the query.

I tried to use the expression builder but that is giving me a #Name?

Does anyone know of a way that I can do this. Something that should be this simple seems to be really hard. I would guess it's the user :).

Thanks for the help.

Jason Alge
Jason.M.Alge@lowes.com

'There are three kinds of people: Those who can count and those who can't'
 
The only way I think would be to do a Union Query, but I've only seen that done once, and really have no clue how that is performed.

Jason Alge
Jason.M.Alge@lowes.com

'There are three kinds of people: Those who can count and those who can't'
 
Hi,
Union Query? How do you want the data to be displayed?
Code:
[b]Query1.Field1    Query2.Field1   Query3.Field1[/b]
Data.........    Data.........   Data........
Data.........    Data.........   Data........
Data.........    Data.........   Data........
Data.........    Data.........   Data........
or
Code:
[b]FieldName[/b]
Data...Query1
Data...Query2
Data...Query3
Data...Query1
Data...Query2
Data...Query3

First one from normal query and second from Union query.
Please explain



Zameer Abdulla
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top