Hi,
I am having problems comparing data from two tables. System details: CR=8.5,DB=Oracle 7, Connection=ODBC.
My table structure is (PartDescription,PartNumber) for both tables. They are linked via PartDescription.
Sample Data Table-A
PartDescription ; PartNumber
----------------------------
Arm ; 1001
Bolt ; 2001
Bolt 2002
Sample Data Table-B
PartDescription ; PartNumber
----------------------------
Arm ; 1001
Bolt ; 9991
Bolt 9992
When I link them in a report, the comparison for "Arm" is ok, but for "Bolt", 4 rows are displayed:
Bolt ; 2001 ; 9991
Bolt ; 2001 ; 9992
Bolt ; 2002 ; 9991
Bolt ; 2002 ; 9992
But the result I need is:
Bolt ; 2001 ; 9991
Bolt ; 2002 ; 9992
Any way to avoid such duplication? Thanks.
I am having problems comparing data from two tables. System details: CR=8.5,DB=Oracle 7, Connection=ODBC.
My table structure is (PartDescription,PartNumber) for both tables. They are linked via PartDescription.
Sample Data Table-A
PartDescription ; PartNumber
----------------------------
Arm ; 1001
Bolt ; 2001
Bolt 2002
Sample Data Table-B
PartDescription ; PartNumber
----------------------------
Arm ; 1001
Bolt ; 9991
Bolt 9992
When I link them in a report, the comparison for "Arm" is ok, but for "Bolt", 4 rows are displayed:
Bolt ; 2001 ; 9991
Bolt ; 2001 ; 9992
Bolt ; 2002 ; 9991
Bolt ; 2002 ; 9992
But the result I need is:
Bolt ; 2001 ; 9991
Bolt ; 2002 ; 9992
Any way to avoid such duplication? Thanks.