Forum Discussion
razan_5r5
4 years agoFrequent Visitor
calculation
how i can sum all the value in one column except one in power bi
- 4 years ago
Hi razan_5r5
If you mean all except on column you could do use the DAX measure ALLEXECPT
Otherwise if you are looking to filter out on particular value, you could use the FILTER measure
Anonymous
4 years agoNot applicable
Hi razan_5r5 ,
I created some data:
Add [amount1] and [amount2]
Here are the steps you can follow:
Create calculated column.
Sum_Column = 'Table'[amount1] + 'Table'[amount2]
Create measure.
Sum_Measure = SUM('Table'[amount1])+SUM('Table'[amount2])
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly