I'm using Crystal v10 with DBase IV tables.
Table 1 is transaction detail and includes fields-
Number, Item, Qty, Location.
Table 2 is stock status and includes fields-
Item, Location, OnHand.
I am using a left inner join to link Item and Location in Table 1 to Item and Location in Table 2.
I have checked that each record in Table 1 has just one record in table 2 with the same combination of Item and Location.
The result I am looking for would be a list of all records in Table 1, showing information from the records in Table 2 that match on Item and Location. (in particular I need Qty from Table 1 and OnHand from Table 2)
What I get is only those records in Table 1 that match the first record in Table 2.
I hope that's all clear enough for someone with more experience to tell me what I'm missing. I've spent at least three days on this and still stuck.
All suggestions appreciated.
Cheers,
Table 1 is transaction detail and includes fields-
Number, Item, Qty, Location.
Table 2 is stock status and includes fields-
Item, Location, OnHand.
I am using a left inner join to link Item and Location in Table 1 to Item and Location in Table 2.
I have checked that each record in Table 1 has just one record in table 2 with the same combination of Item and Location.
The result I am looking for would be a list of all records in Table 1, showing information from the records in Table 2 that match on Item and Location. (in particular I need Qty from Table 1 and OnHand from Table 2)
What I get is only those records in Table 1 that match the first record in Table 2.
I hope that's all clear enough for someone with more experience to tell me what I'm missing. I've spent at least three days on this and still stuck.
All suggestions appreciated.
Cheers,