Forum Discussion
Table over a table
- 4 years ago
Can't you create a bridge table?
yes, paul, and the database designer make this incorrect table relationship. there is no Key that I can join with the customer table direct to the sale table.
So I need a measure or DAX formula or solution that I can over calculate customer and sale table
thanks
Can't you create a bridge table?
- abc_7774 years agoSolution Specialist
i have company code in the sale table and ssummary table and
customer_id in the customer table and Customer_code in ssummary table
would be able to help me how i create bridge using distinct
- PaulDBrown4 years agoCommunity Champion
You can create the bridge table using the equivalent to:
Customer Table = DISTINCT ( UNION ( VALUES ( 'Customer Table'[Customer ID] ), VALUES ( 'Summary table'[Customer ID] ) ) )- abc_7774 years agoSolution Specialist
Hi paul
thanks for your reply.
I have many-to-many relation to ssummary and sales table that has
customer_id in the customer table and Customer_code in ssummary table
how i make bridge table in this case
moreover, i am querying from customer tale to sales but ssummary table is in middle of customer and sales table