Forum Discussion
Petenausen
9 years agoNew Member
Sum on key values
Hi, I have to make a service level indicator on power bi. I have a list of orders make by different customers. and I need to sum them to calculate fill rate. How could i sum them only if the va...
- 9 years ago
HI Petenausen
I use the following table
Order Value x 5 y 6 x 10 z 12 y 3
And just dragged both columns to the canvas using a TABLE visual which automatically grouped the [Order] column and SUMed the [Value] column
- 9 years ago
Hi Petenausen,
In addition, you can also use the formula below to create a new summarize table in this scenario. :smileyhappy:
Summarize Table = SUMMARIZECOLUMNS(Table1[Order],"Total Value",SUM(Table1[Value]))
Regards
Phil_Seamark
Microsoft Employee
9 years agoHI Petenausen
I use the following table
Order Value x 5 y 6 x 10 z 12 y 3
And just dragged both columns to the canvas using a TABLE visual which automatically grouped the [Order] column and SUMed the [Value] column