Forum Discussion
luizahenriques
3 years agoFrequent Visitor
TOTAL VALUE CALCULATION - WRONG
Dear colleagues, I have a problem with de total value. The column "Primeiros Caracteres" is from a dimension table and the other colums below are measures related to this table. My problem is on ...
- 3 years ago
please try
CountTipodeCritérioAlterado = SUMX ( VALUES ( 'Table'[Premeirios caracteres] ), VAR Actual = [TipoCritériodCicloAtual] VAR Anterior = [TipoCritériodCicloAnterior] RETURN IF ( Actual = "PQ" && Anterior = "EX", 1, IF ( Actual = BLANK (), 0, IF ( Anterior = BLANK (), 0, IF ( Actual = "EX" && Anterior = "EX", 0, IF ( Actual = "PQ" && Anterior = "PQ", 0 ) ) ) ) ) )
Greg_Deckler
3 years agoCommunity Champion
luizahenriques 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