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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
anna-lee
Helper I
Helper I

Countx help counting values of a measure

 

I have a matrix of measures (formatted as rows) to show either green, yellow, and red. I'm having difficultly getting the counts of each color using countx measure. My measure to calculate green is shown below, but it doesn't yield any results. I have a work around using SWITCH/TRUE and also another one using SUMMARIZE/COUNTX/FILTER, but they take ages to load and slow down my report.

 

annalee_0-1670018734442.png



00 GREEN TEST =
    VAR GAR = CALCULATE(
                COUNTX('Table','Table'[37 AR]),
                    FILTER('Table',[37 AR]="GREEN"))
    VAR GLR = CALCULATE(
                COUNTX('Table','Table'[38 LR]),
                    FILTER('Table',[38 LR]="GREEN"))
    VAR GSPPCR = CALCULATE(
                COUNTX('Table','Table'[39 SPPCR]),
                    FILTER('Table',[39 SPPCR]="GREEN"))
    VAR GRoB = CALCULATE(
                COUNTX('Table','Table'[40 RoB]),
                    FILTER('Table',[40 RoB]="GREEN"))
RETURN
    GAR + GLR + GSPPCR + GRoB
1 REPLY 1
Greg_Deckler
Super User
Super User

@anna-lee This looks like a measure aggregation problem. See my blog article about that here: https://community.powerbi.com/t5/Community-Blog/Design-Pattern-Groups-and-Super-Groups/ba-p/138149

The pattern is:
MinScoreMeasure = MINX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])
MaxScoreMeasure = MAXX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])
AvgScoreMeasure = AVERAGEX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])
etc.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors