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
patri0t82
Post Patron
Post Patron

Count Number of Times Measure is True in Selected Month

Hello, I have a Measure that I use in a Matrix that displays a checkmark on each day the result is 100%:

IF (
    CALCULATE (
        DISTINCTCOUNT ( MyTable[Name] ),
                MyTable[JobAbbr] <> "V" && 
                MyTable[JobAbbr] <> "T" && 
                MyTable[JobAbbr] <> "S" && 
                MyTable[JobAbbr] <> "P"
    ) / [Count-Jobs] = 1,
    "☑",
    ""
)

 

I would now like to count the number of times the checkmark appears in the selected month. (based on CalendarTable[Date])

1 ACCEPTED SOLUTION

I was able to solve the problem using this:

100%Compliant = 

SUMX (
    VALUES ( CalendarTable[Date] ),
    VAR MeasureValues = {
        [PreviousMeasure]
    }
    RETURN
        SUMX ( MeasureValues, INT ( [Value] = "☑" ) )
)

View solution in original post

3 REPLIES 3
Greg_Deckler
Super User
Super User

@patri0t82 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...

I was able to solve the problem using this:

100%Compliant = 

SUMX (
    VALUES ( CalendarTable[Date] ),
    VAR MeasureValues = {
        [PreviousMeasure]
    }
    RETURN
        SUMX ( MeasureValues, INT ( [Value] = "☑" ) )
)

Thanks for the response. I have to admit, it's a little beyond me. I'm hoping to get a count, not a Min, Max or Average. 

Perhaps there's a solution I should be looking for in Power Query?

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.