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

combining information from one to many relationships

Status
Not open for further replies.

mjmiller24

Programmer
Aug 29, 2001
17
US
My current situation is the following:

I have multiple documents for one ID number. I have several other fields that are displayed in the reports also. However, the reports look exactly the same, they almost look like duplicates, except for the different documents. It should be noted that the ID is the common link between tables.

The select statement, generically, looks like:

SELECT
MAIN.ID, TABLE.ID, TABLE.DOCUMENT
FROM
MAIN MAIN, TABLE TABLE
WHERE
MAIN.ID = TABLE.ID;


example output:

ID Document
343 Test1
343 Test2

Is there a way to get Crystal reports to put all of the documents in the same report so that the IDs are not duplicated?

This is what I want to see:

ID Document
343 Test1 Test2
[/blue]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top