The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 |
---|---|
79 | |
73 | |
39 | |
30 | |
28 |
User | Count |
---|---|
108 | |
99 | |
55 | |
49 | |
45 |