Forum Discussion
Measure Total problems
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
Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907
5 Replies
- Greg_DecklerCommunity 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
Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907- ClintHelper V
Hi Greg_Deckler ,
Thanks so much for that link. That seems to work out perfectly.Pro Forma Project Actuals Total =Var _table =SUMMARIZE('Resources',[Resource Name],"_value",[Actual Cost Pro Forma rates])returnIF(HASONEVALUE('Resources'[Resource Name]),'Systems Actuals with Teams'[Actual Cost Pro Forma rates],SUMX(_table,[_Value]))- Greg_DecklerCommunity ChampionIt's a classic! 🙂
- amitchandakSuper User
Try Like
SUMX(Summarize('Systems Actuals with Teams','Systems Actuals with Teams'[Project Name] ,"_1",[Quantity],"_2",SUMX('Resources',[Resource Standard Rate])),[_1]*[_2])Row context need to set
- ClintHelper V
Hi amitchandak ,
I appreciate the quick response. I am trying to use the DAX you provided but running into Syntax issues. Where you have [Quantity] after the _1, DAX will not allow me to use the Quantity column as specified.