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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

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
Top Kudoed Authors