Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi everybody,
I am trying to calculate the previous KM for the same car plate.
I tried a Dax Formula to calculate the previous value, but it actually returns the value for the next Checklist. I tried to modify the operators, and also tried LASTNORBLANK instead of FIRSTNONBLANK, but it didn't give me the expected values..
Can anybody help me with this, please?
Thank you
Solved! Go to Solution.
Hi @renanc
please use
KM Anterior =
VAR PlateNumTable =
CALCULATETABLE (
fChecklists,
ALLEXCEPT ( fChecklists, fChecklists[DescPlaca] )
)
VAR PreviousTimes =
FILTER (
PlateNumTable,
PlateNumTable[DtCadastro] < EARLIER ( PlateNumTable[DtCadastro] )
)
VAR PreviousTime =
MAXX ( PreviousTimes, PlateNumTable[DtCadastro] )
RETURN
MAXX ( PreviousTimes, PlateNumTable[DtCadastro] = PreviousTime )
Hi @renanc
please use
KM Anterior =
VAR PlateNumTable =
CALCULATETABLE (
fChecklists,
ALLEXCEPT ( fChecklists, fChecklists[DescPlaca] )
)
VAR PreviousTimes =
FILTER (
PlateNumTable,
PlateNumTable[DtCadastro] < EARLIER ( PlateNumTable[DtCadastro] )
)
VAR PreviousTime =
MAXX ( PreviousTimes, PlateNumTable[DtCadastro] )
RETURN
MAXX ( PreviousTimes, PlateNumTable[DtCadastro] = PreviousTime )
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
13 | |
11 | |
9 | |
8 | |
8 |