G
Guest
I have a linked table "Journal" with the following example data:
TransId Order Date Amount and etc.
12345 55512 8/4/04 136.15
12345 56241 8/4/04 256.14
12359 55512 8/9/04 223.98
I have a table "Journal1" with the following example data:
TransId Order DepNum
12345 55512 0
12345 56241 6
12359 55512 11
These tables are joined at both the TransId and Order fields.
When I query based on either of the joined fields, I get data such as the following:
TransId Order Date Amount DepNum
12345 55512 8/4/04 136.15 0
12345 55512 8/4/04 136.15 0
or
TransId Order Date Amount DepNum
12345 55512 8/4/04 136.15 0
12345 56241 8/4/04 136.15 0
or
TransId Order Date Amount DepNum
12345 55512 8/4/04 136.15 0
12359 55512 8/4/04 136.15 0
Any suggestions on how I can correct this?
TransId Order Date Amount and etc.
12345 55512 8/4/04 136.15
12345 56241 8/4/04 256.14
12359 55512 8/9/04 223.98
I have a table "Journal1" with the following example data:
TransId Order DepNum
12345 55512 0
12345 56241 6
12359 55512 11
These tables are joined at both the TransId and Order fields.
When I query based on either of the joined fields, I get data such as the following:
TransId Order Date Amount DepNum
12345 55512 8/4/04 136.15 0
12345 55512 8/4/04 136.15 0
or
TransId Order Date Amount DepNum
12345 55512 8/4/04 136.15 0
12345 56241 8/4/04 136.15 0
or
TransId Order Date Amount DepNum
12345 55512 8/4/04 136.15 0
12359 55512 8/4/04 136.15 0
Any suggestions on how I can correct this?