Forum Discussion
Anonymous
6 years agoNot applicable
Running Total with categories
Hi all, I have a question on running totals: I have a table "Data" of projects (identified by ID). Each project has a generated power "Power", an operational start year "Op_Year" (in number format -...
sturlaws
Resident Rockstar
6 years agoHi Anonymous,
could you try changing your code to this:
RunningTotal =
CALCULATE (
SUM ( 'Data'[Power] );
FILTER (
ALLEXCEPT ( 'Data'; Data[Geo] );
'Data'[Op_Year] <= MAX ( 'Data'[Op_Year] )
)
)
- Anonymous6 years agoNot applicable
Hi sturlaws, thanks for you reply.
Unfortunately it does not work . Until I try to categorize the thing it is working as expected (see picture).
When I add "Geo" to the legend of the chart, it changes to this:While what I expect is something like this:
- Elvi_well1 year agoFrequent Visitor
Hi!
did you solved the problem? I have the same issue.