Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
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 @renanc,
You can try to use the following formula if helps: (I try to lookup the previous date based on the current place and date)
Diferenca KM =
VAR _prevDate =
CALCULATE (
MAX ( fChecklists[Date] ),
FILTER (
fChecklists,
fChecklists[Date] < EARLIER ( fChecklists[Date] )
&& fChecklists[DescPlaca] = EARLIER ( [DescPlaca] )
&& [Digite a KM] <> BLANK ()
)
)
RETURN
CALCULATE (
SUM ( [Digite a KM] ),
FILTER (
fChecklists,
fChecklists[Date] = _prevDate
&& fChecklists[DescPlaca] = EARLIER ( [DescPlaca] )
)
) - fChecklists[Digite a KM]
Regards,
Xiaoxin Sheng
HI @renanc,
You can try to use the following formula if helps: (I try to lookup the previous date based on the current place and date)
Diferenca KM =
VAR _prevDate =
CALCULATE (
MAX ( fChecklists[Date] ),
FILTER (
fChecklists,
fChecklists[Date] < EARLIER ( fChecklists[Date] )
&& fChecklists[DescPlaca] = EARLIER ( [DescPlaca] )
&& [Digite a KM] <> BLANK ()
)
)
RETURN
CALCULATE (
SUM ( [Digite a KM] ),
FILTER (
fChecklists,
fChecklists[Date] = _prevDate
&& fChecklists[DescPlaca] = EARLIER ( [DescPlaca] )
)
) - fChecklists[Digite a KM]
Regards,
Xiaoxin Sheng
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
17 | |
16 | |
13 | |
9 | |
9 |