Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi All,
I need to summarize the below matrix visualization at Level 3 Hirerachy (Category 3)
Condition for Color rollup - if anything under category3 is Red - Then it show Red - (order - 1) Red, 2) Yellow, 3) Blue)
I need to summarrize the above matrix to achieve the below result -
Link to sample dataset - Sample Data and Visualization - Pbix file
Can someone please help me to achieve the above result.
Thanks
Solved! Go to Solution.
@Anonymous , Assuming Category4 is below catgegory 3 existing measure
measure =
var _C1 = count(filter(allselected(Table), Table[category3] = max(Table[category3]) && Table[category4] = "Red"), Table[category4])
var _C2 = count(filter(allselected(Table), Table[category3] = max(Table[category3]) && Table[category4] = "Yellow"), Table[category4])
return
if(isinscope(Table[category3]), Switch(true() ,
not(isblank(_C1)) , "Red" ,
not(isblank(_C2)) , "Yellow" ,
"Blue"
), [M1])
@Anonymous , Assuming Category4 is below catgegory 3 existing measure
measure =
var _C1 = count(filter(allselected(Table), Table[category3] = max(Table[category3]) && Table[category4] = "Red"), Table[category4])
var _C2 = count(filter(allselected(Table), Table[category3] = max(Table[category3]) && Table[category4] = "Yellow"), Table[category4])
return
if(isinscope(Table[category3]), Switch(true() ,
not(isblank(_C1)) , "Red" ,
not(isblank(_C2)) , "Yellow" ,
"Blue"
), [M1])
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
10 | |
10 | |
9 | |
6 |