Forum Discussion
how to display values in matrix without affecting another columns value from different table
- 5 years ago
Hi gauri ,
To get the correct result in matrix, you need to extract a separate type table first:
Type Table = DISTINCT('Target table'[Type])Create relationship between the type table and the target table:
Create a measure like this to calculate the actual values:
Actual = CALCULATE ( SUM ( 'Actual table'[Sales] ), FILTER ( ALL ( 'Actual table' ), 'Actual table'[Type] IN DISTINCT ( 'Type Table'[Type] ) ) ) + 0Now the matrix can show the correct value:
Attached a sample file in the below, hopes to help you.
Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
gauri , You need a common table for Types too. Type should not get filtered if either target or sales are nonblank
Otherwise, you can use this option on the type
amitchandak i did try earlier show item with no data, but it did not work in this scenario.
Also i tried with bridge table but its not giving me the target value, giving blank.