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.
Solved! Go to Solution.
If you want to sum the minimum values by Child and return this sum at the Parent level, a measure something like this should do the trick:
Sum of Min by Child = SUMX ( VALUES ( YourTable[Child] ), CALCULATE ( MIN ( YourTable[Col] ) ) )
For an individual Child, you will still just see the min value, but at the Parent level you should see the sum across Children.
Regards,
Owen
If you want to sum the minimum values by Child and return this sum at the Parent level, a measure something like this should do the trick:
Sum of Min by Child = SUMX ( VALUES ( YourTable[Child] ), CALCULATE ( MIN ( YourTable[Col] ) ) )
For an individual Child, you will still just see the min value, but at the Parent level you should see the sum across Children.
Regards,
Owen
Thank you very much ! This worked a treat. I need to get my head around using sum x and values and how this works specifically I think.
User | Count |
---|---|
85 | |
81 | |
64 | |
53 | |
46 |
User | Count |
---|---|
101 | |
49 | |
42 | |
39 | |
38 |