Forum Discussion
Matrix Summing Totals
- 6 years ago
robandemmy OK so now you have a many-to-many which tends to be a bad thing. Generally, to fix this and make it work correctly, you need to create a bridge table like:Table = DISTINCT('PCSData'[Task])
You relate this to both of your tables and use the Task column in this bridge table in your visualizations.
So I madesome progess:
Now shows total for all ITD Actuals, not the ones related to the 001 and 002 tasksThis is the relationship
It's picking up the 001/002 (task) relation but not the 407_ (project number)
robandemmy OK so now you have a many-to-many which tends to be a bad thing. Generally, to fix this and make it work correctly, you need to create a bridge table like:
Table = DISTINCT('PCSData'[Task])
You relate this to both of your tables and use the Task column in this bridge table in your visualizations.