Forum Discussion
Anonymous
5 years agoNot applicable
Inverse Running Total
I am attempting to calculate an inverse running total on values. So I would in essence start with a value, 100, and in an indexed format reduce that value based on the next indexed field. Exampl...
- 5 years ago
Running Diff = MINX( FILTER( INFO, INFO[Index] = 1 ), INFO[Value] ) - SUMX( FILTER( INFO, 1 < INFO[Index] && INFO[Index] <= EARLIER( INFO[Index] ) ), INFO[Value] )
CNENFRNL
Community Champion
5 years agoRunning Diff =
MINX( FILTER( INFO, INFO[Index] = 1 ), INFO[Value] )
- SUMX(
FILTER( INFO, 1 < INFO[Index] && INFO[Index] <= EARLIER( INFO[Index] ) ),
INFO[Value]
)
- Anonymous5 years agoNot applicable
This solved my needs, thank you very much!