Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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 last column (CountTipodeCriterioAlterado) that is calculating very well (1 to Items that changed from EX to PQ or from PQ to EX and 0 to same Crtiério (PQ to PQ and EX to EX). But i need to get the sum of this number (All Items that had chaged), but the total shows 0, not the sum.
The formulas are below:
Thanks for helping
Solved! Go to Solution.
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 )
)
)
)
)
)
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 )
)
)
)
)
)
@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
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
16 | |
13 | |
12 | |
11 | |
11 |
User | Count |
---|---|
19 | |
14 | |
14 | |
11 | |
9 |