Forum Discussion
AlexP1981
7 years agoFrequent Visitor
Table taking a long time for changes to apply
Hello, I have a CSV file loaded into Desktop (1.5 M rows, 721 MB in size) I have a calculated column; List.Sum(List.FirstN(#"Added Index"[Spend Fragmentation],[Index]) which I used to calculate ...
- 7 years ago
Hi AlexP1981,
Based on my test, I suggest you use a dax formula to calculate the cumulative values.
Column = CALCULATE(SUM(Sheet13[Spend Fragmentation]),FILTER('Sheet13','Sheet13'[Index]<=EARLIER(Sheet13[Index])))Result:
Hope it could hep you.
Regards,
Daniel He
v-danhe-msft
7 years agoMicrosoft Employee
Hi AlexP1981,
Based on my test, I suggest you use a dax formula to calculate the cumulative values.
Column = CALCULATE(SUM(Sheet13[Spend Fragmentation]),FILTER('Sheet13','Sheet13'[Index]<=EARLIER(Sheet13[Index])))
Result:
Hope it could hep you.
Regards,
Daniel He
AlexP1981
7 years agoFrequent Visitor
Works like a charm.
Thanks, Daniel