Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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.
User | Count |
---|---|
16 | |
15 | |
14 | |
12 | |
11 |
User | Count |
---|---|
19 | |
15 | |
14 | |
11 | |
9 |