Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
Hi Team,
I haven't been able to figure out to how to count measure results.
I have an Matrix. Below is what Matrix looks like with measure:
Measure = Max(Table1[column])
I put the measure in the matrix in value field.
| Company Name | Measure |
| C1 | Green |
| c2 | Red |
| c3 | Yellow |
| c4 | Green |
Is there way to count how many green, yello and red are there provided by measure?
I want to list them in row card next matrix to show Total Green, Red, yellow by company
I tried:
COUNTROWS(FILTER('Table1','Table1'[Measure]="GREEN"))but this didn't work.
Solved! Go to Solution.
I was able to solve this using three different measures for each color.
VAR col = SUMMARIZE(Table, Table[Company],"Color",[Measure]) RETURN COUNTX(FILTER(col,[Measure] = "Red"),1)
I was able to solve this using three different measures for each color.
VAR col = SUMMARIZE(Table, Table[Company],"Color",[Measure]) RETURN COUNTX(FILTER(col,[Measure] = "Red"),1)
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 21 | |
| 20 | |
| 18 | |
| 13 |
| User | Count |
|---|---|
| 58 | |
| 51 | |
| 38 | |
| 31 | |
| 26 |