Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hello,
I have this matrix.
built with that parameters :
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.
As result, I got that one :
I would like to get as result that display.
USER | SKILL 1 | SKILL 2 | SKILL 3 |
USER 1 | 1 | ||
USER 2 | 1 | ||
USER 3 | 1 | 1 | |
USER 4 | 1 | 1 |
Any help would be very appreciated.
Best Regards,
Solved! Go to Solution.
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:
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
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:
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
@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
@jerpic , Try a measure like
maxx(filter(ADDCOLUMNS(summarize(Table, Table[User], Table[skill]), "_1",[Min De Rank]), [_1] =1),[_1] )
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,
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
88 | |
85 | |
82 | |
65 | |
49 |
User | Count |
---|---|
138 | |
110 | |
104 | |
66 | |
64 |