Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Joak
Frequent Visitor

Summarize issue

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 🙂

1 ACCEPTED SOLUTION

@Joak,

 

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] )
)
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
TomMartens
Super User
Super User

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



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

Thanks, you're right it works now thanks for the highlight and the article ! 

 

 

@Joak,

 

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] )
)
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.