Forum Discussion
Nun
5 years agoResolver I
Incorrect Total
Hello, I have these formulas: Actual LC = calculate(sum('Cost Item'[Amount in Local Currency]), 'Cost Item'[After Or Pre]="After") because there value in "Amount in Local Currency" with Cist Item...
- 5 years ago
Nun , You need to some intermediate grouping if you want sum
like sumx(values('Cost Item'[?]),[Act value])
where ? is level/column/group by after which you want sume
Refer this video:https://www.youtube.com/watch?v=4xn0A43jBz8&t=122s
amitchandak
5 years agoSuper User
Nun , You need to some intermediate grouping if you want sum
like sumx(values('Cost Item'[?]),[Act value])
where ? is level/column/group by after which you want sume
Refer this video:https://www.youtube.com/watch?v=4xn0A43jBz8&t=122s
- Nun5 years agoResolver I
Hi amitchandak
thank you so much!
I tried some columns in the fuction "values" and I found the correct one, thanks!