Forum Discussion
negro57
9 years agoNew Member
Weekly kilometers
I have a table where I register the kilometers that have the vehicles, I want to know the kilometers that traveled, subtracting the settlers the previous week and the settled ones this week. What ...
Vvelarde
9 years agoCommunity Champion
create a calculated colum:
KRecorridosP =
CALCULATE (
SUM ( Table1[Kilometros] ),
FILTER ( ALLEXCEPT ( Table1,Table1[Dominio] ), Table1[Fecha] = EARLIER ( Table1[Fecha] ) - 7 )
)
negro57
9 years agoNew Member
So now I only have to subtract kilometers and this column excellent thousand thanks