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.
I have several measures performing calculations in a matrix, the second column here is a measure of measures,
The third Column is a measure of the measure of the form:
@Anonymous I'm not sure what the question is here but I have not had my first cup of coffee yet this morning. Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
The most important parts are:
1. Sample data as text, use the table tool in the editing bar
2. Expected output from sample data
3. Explanation in words of how to get from 1. to 2.
But, could be a measures aggregation issue. 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.
Maybe a measure totals problem. Very common. See my post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376. Also, this Quick Measure, Measure Totals, The Final Word should get you what you need: https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907
Thansk for responding Greg. I'll see if I can expand.
In the third column of the table I have 1's registered if the second column is ?100 and )'s if not. This column is a result of the measure :
One way to do this might be the following approach. Make a measure that does the following:
1. make a variable with GENERATESERIES() that goes from 1 to the # of measures you have
2. separately make a SWITCH() measure that returns each # based on 1 to your total # of measures, returning each of those measures to use in step 3. Use the Value column as your expression in the switch.
3. In another variable, do ADDCOLUMNS(tableinvariable1, "Result", [switch measure])
4. return DIVIDE(Countrows(Filter(#3variabletable, [Result]>100)), countrows(#3variabletable))
Sorry I didn't have time to type it out better, but I hope that gets you there.
If this works for you, please mark it as solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |