Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

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.

Reply
renanc
Helper II
Helper II

Calculate the values between two lines within the same value in another column

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

Diferenca KM =
var _min =
CALCULATE(
FIRSTNONBLANK(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] = _min
&& fChecklists[DescPlaca]=EARLIER([DescPlaca])
&& fChecklists[IdQuestionario] = EARLIER([IdQuestionario])
)
) - [Digite a KM]

 

renanc_3-1654086189757.png

 


 

renanc_2-1654085887860.png

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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

View solution in original post

1 REPLY 1
Anonymous
Not applicable

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

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

Check out the April 2025 Power BI update to learn about new features.

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

Find out what's new and trending in the Fabric community.