Forum Discussion
abertolett
9 years agoFrequent Visitor
Aggregating after data is grouped/rolled-up
I have two tables joined one to many in power bi desktop. So it does a good job automatically summing up numbers based on that field. But I'm trying to roll-up an AVG which is based on two ot...
- 9 years ago
Check out my Super Group design pattern, I think it may help:
https://community.powerbi.com/t5/Community-Blog/Design-Pattern-Groups-and-Super-Groups/ba-p/138149
v-qiuyu-msft
Community Support
9 years agoHi abertolett,
Based on your description, I have created sample data about Table A and Table B (See attached .pbix file), you can try the measure below:
Revenue/Orders = DIVIDE(CALCULATE(SUM('Table B'[Revenue]), FILTER(ALL('Table B'),'Table B'[Item] = MAX('Table A'[Item]))),CALCULATE(SUM('Table B'[Orders]), FILTER(ALL('Table B'),'Table B'[Item] = MAX('Table A'[Item]))))
Best Regards,
Qiuyun Yu