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

Creating a new table which sums values of another table

Hello,

I'd like to create a new table which contains data from another table.

Here is what my original table looks like:

 

DateCategorySub-categoryAmount
July 2019A110
July 2019A215
July 2019B110
July 2019B220
August 2019A110
August 2019A220
August 2019A330
August 2019B115
August 2019B210

 

What I'm looking to get in a new table is this:

 

CategoryDateAmount
AJuly 201925
BJuly 201930
AAugust 201960
BAugust 201925

 

So basically it is a sum of the amount per category and per month.

How can I achieve this ?

 

Thanks

 

1 ACCEPTED SOLUTION
Gordonlilj
Solution Sage
Solution Sage

Hi,

 

You could try creating a new table under the modeling tab and use something like the code below:

NewTable =
SUMMARIZE( 'Table',
                         'Table'[Date], 'Table'[Category],
                                    "Amount", SUM('Table'[Amount] )
 )

View solution in original post

2 REPLIES 2
Gordonlilj
Solution Sage
Solution Sage

Hi,

 

You could try creating a new table under the modeling tab and use something like the code below:

NewTable =
SUMMARIZE( 'Table',
                         'Table'[Date], 'Table'[Category],
                                    "Amount", SUM('Table'[Amount] )
 )
Anonymous
Not applicable

Beautiful, it worked. Thanks !

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.