Forum Discussion
Anonymous
6 years agoNot applicable
Cardinality/Relationship issue across multiple tables
I have Part Numbers in four tables. Each table has the potential to have unique part numbers in it. I want to be able to have a page wide filter that seaches all four tables and displays results in...
- 6 years ago
If it were me, I would maybe create a new table that has all of the unique codes from all of my tables and then link that to each table one-way perhaps?
Something like:
Table = DISTINCT( UNION( SELECTCOLUMNS('Table1',"__Part Number",[Part Number]), SELECTCOLUMNS('Table2',"__Part Number",[Part Number]), SELECTCOLUMNS('Table3',"__Part Number",[Part Number]), SELECTCOLUMNS('Table4',"__Part Number",[Part Number]) ) )
amitchandak
Super User
6 years agoThese tables do not seem like a master tables. Bring or create a part table and join all four tables with that.
Try to avoid manat to many and bi-directional join unless needed by use case.