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
Anonymous
Not applicable

Hi! how to sum some values in a table to build a new table

Hello! I have  a table like

id   customerid  waitingtime cost

1    001                3                  5

2    001                2                  12

3    002                3                   12

4    002                5                   23

.......

I have tens of thousands of customers, and I need to sum waitingtime and cost for each customer in a new table, like

customerid  waitingtime cost

001                5                 17

002                8                  35

............

so that I can connect this new table with another table using customerID. Could anyone help on it? Thanks!

1 ACCEPTED SOLUTION
pranit828
Community Champion
Community Champion

Hi @Anonymous 

Create a new table using the new table button on Modelling tab and use the below dax to do so.

 

SUM_Table = SUMMARIZE('Table','Table'[customerid ], "waitingtime", SUM('Table'[waitingtime]), "cost", SUM('Table'[cost]))

 





PBI_SuperUser_Rank@1x.png


Hope it resolves your issue? 
Did I answer your question? Mark my post as a solution!

Appreciate your Kudos, Press the thumbs up button!!
Linkedin Profile

View solution in original post

2 REPLIES 2
pranit828
Community Champion
Community Champion

Hi @Anonymous 

Create a new table using the new table button on Modelling tab and use the below dax to do so.

 

SUM_Table = SUMMARIZE('Table','Table'[customerid ], "waitingtime", SUM('Table'[waitingtime]), "cost", SUM('Table'[cost]))

 





PBI_SuperUser_Rank@1x.png


Hope it resolves your issue? 
Did I answer your question? Mark my post as a solution!

Appreciate your Kudos, Press the thumbs up button!!
Linkedin Profile
Anonymous
Not applicable

Thanks a lot! It works!

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.