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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
jerpic
Frequent Visitor

Matrix : Do not display the other values that don't match the filter

Hello,

 

I have this matrix.

 

jerpic_0-1639999004126.png

built with that parameters :

 

jerpic_1-1639999055410.png

 

I would like to show only the skills that match a specific value, for that I applied a filter on the "Min de RATING" like that.

 

jerpic_2-1639999141526.png

 

As result, I got that one : 

 

jerpic_3-1639999179662.png

 

I would like to get as result that display.

 

USERSKILL 1SKILL 2SKILL 3
USER 11  
USER 2  1
USER 311 
USER 4 11

 

Any help would be very appreciated.

 

Best Regards,

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @jerpic ,

Here are the steps you can follow:

1. Create measure.

 

Flag =
IF(
    MIN('TBL_SKILL_NEW'[RATING])=1,MIN('TBL_SKILL_NEW'[RATING]),BLANK())

 

2. Result:

vyangliumsft_0-1640243573481.png

 

Best Regards,

Liu Yang

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

4 REPLIES 4
Anonymous
Not applicable

Hi  @jerpic ,

Here are the steps you can follow:

1. Create measure.

 

Flag =
IF(
    MIN('TBL_SKILL_NEW'[RATING])=1,MIN('TBL_SKILL_NEW'[RATING]),BLANK())

 

2. Result:

vyangliumsft_0-1640243573481.png

 

Best Regards,

Liu Yang

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

@jerpic , A simple measure like this

Measure = CALCULATE(min(TBL_SKILL_NEW[RATING]), FILTER(TBL_SKILL_NEW,TBL_SKILL_NEW[RATING] =1))

 

Find file attached after signature

 

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
amitchandak
Super User
Super User

@jerpic , Try a measure like 

maxx(filter(ADDCOLUMNS(summarize(Table, Table[User], Table[skill]), "_1",[Min De Rank]), [_1] =1),[_1] )

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

Hi @amitchandak 

 

Thanks for your quick reply. Unfortunately, I'm not sure how to use it...

 

If you can look at my file, it would be nice : PBIX 

 

Best Regards,

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors