Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi All,
I have below Matrix table in PowerBI
| Incident Group | Cat1 | Cat2 | Cat3 | Cat4 |
| ABC | 2 | 3 | 4 | 5 |
| DEF | 1 | 2 | 9 | 8 |
| GHI | 2 | 3 | 5 | 6 |
| JKL | 8 | 1 | 3 | 5 |
I have IncidentGroup as Slicer, when i select value in slicer values should come only for that.
for Ex : If i Select ABC in Slicer want to see table like below.
| Incident Group | Cat1 | Cat2 | Cat3 | Cat4 |
| ABC | 2 | 3 | 4 | 5 |
| DEF | ||||
| GHI | ||||
| JKL |
Is there any posiblity to achieve this.
Thanks in Advance.
Solved! Go to Solution.
Hi @Chandram ,
According to your description, here’s my solution.
1.Create a new table, there’s no relationship between the two tables.
2.Create a measure
M_Value = IF(MAX('Table'[Incident Group]) in VALUES(DimGroup[Incident Group]),SUM('Table'[Value]),BLANK())
3.Put Incident Group of the new table into slicer and put the measure M_Value into value.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Chandram ,
According to your description, here’s my solution.
1.Create a new table, there’s no relationship between the two tables.
2.Create a measure
M_Value = IF(MAX('Table'[Incident Group]) in VALUES(DimGroup[Incident Group]),SUM('Table'[Value]),BLANK())
3.Put Incident Group of the new table into slicer and put the measure M_Value into value.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
It is not working for ths when filter Slicer it measures only for that remainig as blanks.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!