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.
Hi Guys,
I need to calculate the difference between column (3)
Last value not blank this month - Last value not blank before this moth
Hi @Anonymous
Try this: The code looks longer than it is. Merely duplicate for each different month, in this case Jan and February. Will point out the high non blank value in January is not the last date, whereas the last nonblank value in February is the last date in February, but it is not the highest value, which is correct.
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel
LastNonBlank Value of Feb - Jan =
VAR LastNonBlankDateJanuary =
CALCULATE (
MAX ( myTable[Date] ),
FILTER (
ALL ( myTable ),
myTable[Date] <= DATE ( 2019, 1, 31 )
&& myTable[Date] >= DATE ( 2019, 1, 1 )
&& myTable[Value] <> 0
)
)
VAR _January =
CALCULATE (
SUM ( myTable[Value] ),
FILTER ( ALL ( myTable ), myTable[Date] = LastNonBlankDateJanuary )
)
VAR LastNonBlankDateFebruary =
CALCULATE (
MAX ( myTable[Date] ),
FILTER (
ALL ( myTable ),
myTable[Date] <= DATE ( 2019, 2, 28 )
&& myTable[Date] >= DATE ( 2019, 2, 1 )
&& myTable[Value] <> 0
)
)
VAR _February =
CALCULATE (
SUM ( myTable[Value] ),
FILTER ( ALL ( myTable ), myTable[Date] = LastNonBlankDateFebruary )
)
RETURN
_February - _January
Proud to be a Super User!
@Nathaniel_C thanks for the help, I need a flexible solution.
I developed the solution below, but this calculate is very slow:
Do you know a form of optimizer?
Delta KM com VAR =
//------------------------------------------------------------------------
SUMX(
VALUES(Diesel[Chave]);
//-------------------Primeira Quilomatragem----------------------------------------------
VAR Primeiro_KM =
CALCULATE(
if(
CALCULATE(
max(Diesel[Quilometragem ou Horas]);
FILTER(
all(Diesel);
Diesel[Data da Transacao] < min(Diesel[Data da Transacao])&&
Diesel[Quilometragem ou Horas] <> BLANK()&&
Diesel[Inventario] = max(Diesel[Inventario])
)
) =BLANK();
CALCULATE(
max(Diesel[Quilometragem ou Horas]);
FILTER(
all(Diesel);
Diesel[Data da Transacao] <= min(Diesel[Data da Transacao])&&
Diesel[Quilometragem ou Horas] <> BLANK()&&
Diesel[Inventario] = max(Diesel[Inventario])
)
);
CALCULATE(
max(Diesel[Quilometragem ou Horas]);
FILTER(
all(Diesel);
Diesel[Data da Transacao] < min(Diesel[Data da Transacao])&&
Diesel[Quilometragem ou Horas] <> BLANK()&&
Diesel[Inventario] = max(Diesel[Inventario])
)
)
)
)
//------------------------Ultima Quilomatragem----------------------------------------------------
VAR Ultimo_KM =
CALCULATE(
CALCULATE(
max(Diesel[Quilometragem ou Horas]);
LASTNONBLANK(
Diesel[Data da Transacao];
CALCULATE(max(Diesel[Quilometragem ou Horas])
)
)
)
)
return
//------------------------------------------------------------------------\
Ultimo_KM-Primeiro_KM
)
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 |
---|---|
19 | |
14 | |
14 | |
11 | |
8 |