Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello,
In a new table, I want to summarize a column; and then sum the values that are matching together :
ExistingTable-
Column A Values
A 2
A 2
A 4
B 1
B 1
B
New Table-
Column A Values
A 8
B 2
I'm Using this code :
New table = SUMMARIZE( ' ExistingTable ' ; ' ExistingTable ' [Column A] ; Sum ( ' Existing Table ' [Values] )
I'm wondering why wouldn't that be working ?
Thanks 🙂
Solved! Go to Solution.
You may use GROUPBY Function as well. By the way, to help close this thread, accept the solution above. Your contribution is highly appreciated.
New table =
GROUPBY (
ExistingTable,
ExistingTable[Column A],
"Values", SUMX ( CURRENTGROUP (), ExistingTable[Values] )
)
Hey,
I guess your Table-Calculation should look like this
New table = SUMMARIZE( ' ExistingTable ' ; ' ExistingTable ' [Column A] ; "Values", Sum ( ' Existing Table ' [Values] ) )
It seems your formula just missed a column name for the aggregated value.
And for a couple of reasons it also a good practice to take this article into account:
http://www.sqlbi.com/articles/best-practices-using-summarize-and-addcolumns/
Hope this helps
Thanks, you're right it works now thanks for the highlight and the article !
You may use GROUPBY Function as well. By the way, to help close this thread, accept the solution above. Your contribution is highly appreciated.
New table =
GROUPBY (
ExistingTable,
ExistingTable[Column A],
"Values", SUMX ( CURRENTGROUP (), ExistingTable[Values] )
)
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 45 | |
| 35 | |
| 30 | |
| 15 | |
| 15 |
| User | Count |
|---|---|
| 58 | |
| 55 | |
| 38 | |
| 21 | |
| 21 |