Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I have a matrix and I have a 3-row header - VP Name, Manager Name, Role
then I have a Column which has two headers - no of hours by each role and the total of their rate.
Under rate and total, I want to highlight top 15% value as we have it in excel ( Pivot tabl
Solved! Go to Solution.
Hi @ashjas ,
Please use Field value.
Create a measure like this:
Measure =
VAR _s =
SUMMARIZE (
FILTER ( ALLSELECTED ( 'Source' ), [Country] = "usa" ),
[Sr Manager],
[Manager],
[Product],
[Period Qtr],
[Period Month],
[Country],
"sum", SUM ( Source[Sales] )
)
RETURN
IF (
SELECTEDVALUE ( Source[Country] ) = "usa"
&& SUM ( Source[Sales] ) > PERCENTILEX.EXC ( _s, [sum], 0.75 ),
"red"
)
Result:
Pbix in the end you can refer.
Best Regards
Community Support Team _ chenwu zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @ashjas ,
Please use Field value.
Create a measure like this:
Measure =
VAR _s =
SUMMARIZE (
FILTER ( ALLSELECTED ( 'Source' ), [Country] = "usa" ),
[Sr Manager],
[Manager],
[Product],
[Period Qtr],
[Period Month],
[Country],
"sum", SUM ( Source[Sales] )
)
RETURN
IF (
SELECTEDVALUE ( Source[Country] ) = "usa"
&& SUM ( Source[Sales] ) > PERCENTILEX.EXC ( _s, [sum], 0.75 ),
"red"
)
Result:
Pbix in the end you can refer.
Best Regards
Community Support Team _ chenwu zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Can someone please help?
@ashjas ,
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Hi Please find attached.
Excel file has sample data
1.png shows how the solution can be implemented in excel.
2.png is the end result and I want to replicate the same in power bi
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
118 | |
82 | |
47 | |
42 | |
33 |
User | Count |
---|---|
186 | |
80 | |
72 | |
48 | |
45 |