Forum Discussion
YPBI
2 years agoFrequent Visitor
Running Total % on Measure
Hi - I want to create running total column based on the values in the % Scaled Scores column. The probem is that the said column is a measure, so solutions that use SUM won't work. What would the DAX...
Ashish_Mathur
2 years agoSuper User
Hi,
Share the download link of the PBI file.
YPBI
2 years agoFrequent Visitor
Would love to share but the dataset contains all sorts of sensitive information...
These are the relevant columns at play though:
% Scaled Scores measure:
% Scaled Scores =
DIVIDE(
COUNT(TestData[Scaled Score]),
CALCULATE(
COUNT(TestData[Scaled Score]),ALLSELECTED()))
- Ashish_Mathur2 years agoSuper User
Hi,
Please find attached the PBI file.
Hope this helps.
- YPBI2 years agoFrequent Visitor
Thanks for the responses, however the end result needs to look like this:
The running total should cumulatively sum each percentage in the % Scaled Score column.
- Ashish_Mathur2 years agoSuper User
That is exactly what my solution does.