The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 )
User | Count |
---|---|
16 | |
8 | |
6 | |
6 | |
5 |
User | Count |
---|---|
23 | |
13 | |
13 | |
8 | |
8 |