Forum Discussion
Calculation betwen column
Hi, is it possible to disable the calculation between columns in the row totals, keeping the calculation between rows?
Hi Cervo114 ,
This is caused by the calculate logic of DAX. And you can refer to the posts Greg_Deckler provided. They explains in detail.
In your scenario, you can try to create another measure like:
Measure2 = SUMX ( VALUES ( 'Table'[Column] ), [Measure1] )Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
3 Replies
- Greg_Deckler
Community Champion
Cervo114 Not entirely certain what you mean, can you provide an example?
Maybe a measures total issue? 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- Cervo114Frequent Visitor
This is the problem
- Icey
Community Support
Hi Cervo114 ,
This is caused by the calculate logic of DAX. And you can refer to the posts Greg_Deckler provided. They explains in detail.
In your scenario, you can try to create another measure like:
Measure2 = SUMX ( VALUES ( 'Table'[Column] ), [Measure1] )Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.