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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
Anonymous
Not applicable

Count the Measure Results (Measue is Max of Column)

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 NameMeasure
C1Green
c2Red
c3Yellow
c4Green

 

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. 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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)

 

View solution in original post

1 REPLY 1
Anonymous
Not applicable

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)

 

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

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

March2025 Carousel

Fabric Community Update - March 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors
Top Kudoed Authors