Forum Discussion
LotteLaugesen
Helper V
4 years agoProblem with running total
Hi Can anybody tell me what's wrong with my running total? Why doesn't it aggregate when I have different Currency LCU? Can anybody tell me how to solve it? When I remove Currency LCU there is ...
Anonymous
4 years agoNot applicable
Hi LotteLaugesen ,
Please use ALLEXCEPT() function on [Current LCU]
Acc. DKK Amount =
VAR RT =
IF (
[DKK] <> BLANK (),
CALCULATE (
'Misc calc'[DKK],
ALLEXCEPT ( 'table', 'table'[Current LCU] ),
FILTER (
ALLSELECTED ( 'Dim Calendar' ),
'Dim Calendar'[Date] <= MAX ( 'Dim Calendar'[Date] )
)
)
)
RETURN
RT
Best Regards,
Jay
LotteLaugesen
Helper V
4 years agoHi Anonymous
Unfortunately it just made it worse 😉
- Anonymous4 years agoNot applicable