Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi everybody, I have a calculated value on Dax, but it calculates the value between the current fuel fill and the next one. I want to calculate the value between the current fuel fill and the previous one. Can abybody help me with this, please?
The Dax formula used is here, and attachet below.
Thank you
Solved! Go to Solution.
Hi @Anonymous I found the solution for this case, it was:
Hi @renanc ,
Please share some sample data so that we could test the formula on it.
Best Regards,
Jay
Hi @Anonymous I found the solution for this case, it was:
Hi @johnt75, actually it did not work. In the new column (Diferenca KM 2), the values are negative values of those we have in Digite a KM. Probably the term inside
CALCULATE ( MIN ( [Digite a KM] ), FILTER ( ALL ( fChecklists ), fChecklists[IdChecklist] = _max && fChecklists[DescPlaca] = EARLIER ( [DescPlaca] ) && fChecklists[IdQuestionario] = EARLIER ( [IdQuestionario] ) )
is returning 0 or a null value, and then subtracting [Digite a KM].
Thank you for your help
You can try
Diferenca KM =
VAR _max =
CALCULATE (
LASTNONBLANK ( fChecklists[IdChecklist], 0 ),
FILTER (
ALL ( fChecklists ),
fChecklists[IdChecklist] < EARLIER ( [IdChecklist] )
&& fChecklists[DescPlaca] = EARLIER ( [DescPlaca] )
&& fChecklists[DtCadastro] >= EARLIER ( [DtCadastro] )
&& fChecklists[IdQuestionario] = EARLIER ( [IdQuestionario] )
)
)
RETURN
CALCULATE (
MIN ( [Digite a KM] ),
FILTER (
ALL ( fChecklists ),
fChecklists[IdChecklist] = _max
&& fChecklists[DescPlaca] = EARLIER ( [DescPlaca] )
&& fChecklists[IdQuestionario] = EARLIER ( [IdQuestionario] )
)
) - [Digite a KM]
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |