Forum Discussion
Anonymous
6 years agoNot applicable
Groupby/Summarize and sum calculated Column
I have a table similar to this, I have a bar chart which contains only Name and Total Cost. If i filter value Greater than 3500 then the bar chart should show Customer 1 = 7000 but it picksup single...
- 6 years ago
Hi,
Please try to create this calculated table:
Table 2 = SUMMARIZE('Table','Table'[Name],"Total Cost",SUMX(DISTINCT('Table'),'Table'[No. Unit]*'Table'[Per Unit]))The result shows:
Hope this helps.
Best Regards,
Giotto Zhi
amitchandak
Super User
6 years agoYou can create a column
new column = [Per Unit]*[No. Unit]
New mseaure = sumx(table,table[Per Unit]*table[No. Unit])
Appreciate your Kudos.
- Anonymous6 years agoNot applicable
My need is to GroupBy "Name" and SumUp "Total Cost" which is a Calculated Column.
End result should be as below,
Name Total Cost Customer 1 7000 Customer 2 3000