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 @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
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
13 | |
11 | |
9 | |
6 |