"relationships"
1 TopicProblem to join 3 tables together
Hello, Could you help me with the problem I face? I have a "Prices" table with the following structure: ItemID PriceGroup Price n1 FR 5 n1 BE 4 n2 FR 9 n2 BE 8 CustomersPrices table: CustomerID PriceGroup 001 FR 002 BE SalesTransactions table: OrderID ItemID CustomerID Qty S01 n1 001 1 S01 n2 001 2 S02 n1 002 1 I'd like to add a column to the SalesTransactions table (or a corresponding graph in the report) SalesAmount = Qty * Price In principle, I should be able to do it, as ItemID and CustomerID uniquely identify the price. I tried to join the tables together, but it didn't work: Ambiguos paths between SalesTransactions and Prices tables.Solved465Views0likes1Comment