Forum Discussion
Anonymous
6 years agoNot applicable
Accumulate Negative Values
Hi all !! I need to make a pareto chart but with negative values, for this I need to accumulate the negative values from higher to lower. The first step is to rank the negative totals from hi...
- 6 years ago
Hi Anonymous
Thanks for your feedback.
Based on your details, I modified my sample and the measures:
Use below measure to calculate the rankx :
Rankx = RANKX(ALL('Sample'),[ValuesMeasure],,DESC)Then use the below measure to generate the cumulative results:
FinalResults = var a = [Rankx] Return SUMX(FILTER(ALL('Sample'),[Rankx]<=a),[ValuesMeasure])
Anonymous
6 years agoNot applicable
Try this:
Measure =
VAR LastVisible = MAX ( TABLE[Rank] )
RETURN CALCULATE (
SUM(VALUES),
TABLE[RANK] <= LastMonthVisible
Anonymous
6 years agoNot applicable
Hi Anonymous is not possible because rank is a measure, it is not stored in a table.
- Anonymous6 years agoNot applicable
Instead of a measure, you can create a calculated column for the same.