Forum Discussion
arashaga
7 years agoHelper I
Issue with the Subtotal using DAX
I have the folowing table ( partial). I use the following DAX measure to get the sum of [# Change 2014-2024] per Occupation. Why I am doing this is becuase I I do not do th...
- 7 years ago
OK, so probably something like:
Total Demand Intermediate = sum(UTSATEST[# Change 2014-2024])/DISTINCTCOUNT(UTSATEST[Major (CIP Title)]) Total Demand = IF( HASONEVALUE(UTSATEST[Occupation]), [Total Demand Intermediate], SUMX(SUMMARIZE(UTSATEST,[Occupation],"__Total",[Total Demand Intermediate]),[__Total])
Greg_Deckler
7 years agoCommunity Champion
This looks like 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
Would need to see your formula for your measure.
arashaga
7 years agoHelper I
Thanks for the reply. I edited the original question and added the DAX measure at the end.