Forum Discussion
Combining information without getting duplicate rows
- Anonymous4 years ago
Hi Lumegu ,
Try to build your matrix by measure and transform it in Format.
I build a sample by your data. I turn off Stepped layout/ Word wrap function in Format and then reduce the width of columns which I don't need to 0.
Then create measures as below.
Amount of related information = IF(ISINSCOPE(information_table[Information number]),BLANK(),COUNT(information_table[Information])+0)Related information = IF(ISINSCOPE(information_table[Information number]), MAX(information_table[Information]),BLANK())Related Information Number = IF(ISINSCOPE(information_table[Information number]), SUM(information_table[Information number]),BLANK())Result is as below.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Lumegu ,
Try to build your matrix by measure and transform it in Format.
I build a sample by your data. I turn off Stepped layout/ Word wrap function in Format and then reduce the width of columns which I don't need to 0.
Then create measures as below.
Amount of related information =
IF(ISINSCOPE(information_table[Information number]),BLANK(),COUNT(information_table[Information])+0)Related information =
IF(ISINSCOPE(information_table[Information number]), MAX(information_table[Information]),BLANK())Related Information Number = IF(ISINSCOPE(information_table[Information number]), SUM(information_table[Information number]),BLANK())
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.