Questions.pbix (1.1 MB) I know this probably a relatively easy question. Here is the question and the .PBIX data…
In which Region do all Product Categories fall beneath the overall average profit? I know the answer
Average Profit Per Region/Category = 109,370.20
Is this there a better way than this…
-Profit for all Regions and Categories
All Profit = CALCULATE([Total Profit], ALLSELECTED(orders))
–Number of distinct combinations of Region & Product Category
distinct count = COUNTROWS(groupby(orders,Orders[Region],Orders[Product Category]))
All Categories = CALCULATE([distinct count], ALLSELECTED(orders))
-Average Profit =
All Orders Average Profit = DIVIDE([All Profit],[All Categories],0)