Having trouble with Multiple Tables in 1 Report.

thrainpa

Registered User.
Local time
Today, 20:27
Joined
Dec 1, 2011
Messages
29
[SOLVED] Having trouble with Multiple Tables in 1 Report.

###### UPDATE ######

Figured it out, just used two sub-reports in the main report.
Thanks anyway!

######

I'm having trouble querying two tables in one report. I have the actual query down (here it is).
Code:
SELECT * FROM Table1, Table2
WHERE (Table1.[ID]=ID)
AND (Table2.[ID]=ID)
Basically both of the tables/recordsets are shown in the report, but when one table/recordset is longer than the other, then the short one repeats itself until it is equal in records.

Is there any way to stop this happening?
 
Last edited:

Users who are viewing this thread

Back
Top Bottom