I have two .dbf tables: Orderdetail.dbf and Consultcpo.dbf
Code:
Orderdetail.dbf Fields
Ordernum Productnum
2001 345
2001 777
2002 102
2003 200
2003 654
2003 765
etc etc
ie the Orderdetail table has one record for each product on the Order
Code:
Consultcpo Fields
Ordernum Consultnum
2001 156
2002 345
2002 366
2003 156
etc etc
ie the Consultcpo table has one record for every Consultant on the Order
I want to create a new table that allows me to associate each Consultant with all of the products on the orders
Code:
New Table Fields
Ordernum Consultnum Prodnum
2001 156 345
2001 156 777
2002 345 102
2002 366 102
2003 156 200
2003 156 654
2003 156 765
etc etc etc
I have been trying Joins and Intersections but neither works.
How can I create an association between Consultants and Products sold?
Thanks
Bookmarks