Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Chandram
Frequent Visitor

Show measure for only selected data in slicer remaining as blanks in matrix chart

Hi All,

 

I have below Matrix table in PowerBI 

 

Incident GroupCat1Cat2Cat3Cat4
ABC2345
DEF1298
GHI2356
JKL8135

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 GroupCat1Cat2Cat3Cat4
ABC2345
DEF    
GHI    
JKL    

Is there any posiblity to achieve this.

Thanks in Advance.

1 ACCEPTED SOLUTION
v-yanjiang-msft
Community Support
Community Support

Hi @Chandram ,

According to your description, here’s my solution.

1.Create a new table, there’s no relationship between the two tables.

vkalyjmsft_0-1637222477035.png

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.

vkalyjmsft_1-1637222477041.png

 

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.

View solution in original post

3 REPLIES 3
v-yanjiang-msft
Community Support
Community Support

Hi @Chandram ,

According to your description, here’s my solution.

1.Create a new table, there’s no relationship between the two tables.

vkalyjmsft_0-1637222477035.png

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.

vkalyjmsft_1-1637222477041.png

 

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.

amitchandak
Super User
Super User

@Chandram , USe this option and check - Show item with no data. Work well if the incident is from a dimension table

 

ShowItemwithoutdata.JPG

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

It is not working for ths when filter Slicer it measures only for that remainig as blanks.

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors