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

Sum of a column with text filters

Hi,

 

I have got a table like this

LandGroupTypeValue
ChinaAXY10
GermanyAZU21
USABXY15
SpainBZU16
ChinaCXY8
USACXY25
ChinaAXY20
GermanyAZU15
USABXY3
SpainBXY15
ChinaCXY8
USACXY20

 

Now I want to calculate the Sum the column Value which is grouped by Land, Group and type (for example). To get this:

LandGroupTypeSum Value
ChinaAXY30
ChinaCXY16
GermanyAZU36
SpainBZU16
SpainBXY15
USABXY18
USACXY45

 

Any Ideas?

 

Best regards

Timo

1 ACCEPTED SOLUTION

@Anonymous  Please try this as a "New Table"

 

GroupingTestOut = SUMMARIZECOLUMNS(GroupingTest[Land],GroupingTest[Group],GroupingTest[Type],"Total Value",SUM(GroupingTest[Value]))

image.png





Did I answer your question? Mark my post as a solution!

Proud to be a PBI Community Champion




View solution in original post

5 REPLIES 5
v-xicai
Community Support
Community Support

Hi @Anonymous ,

 

You can create a calculated column like DAX below.

 

Sum Value = CALCULATE(SUM('Table'[Value]),FILTER(ALLSELECTED('Table'),'Table'[Land]=EARLIER('Table'[Land])&&'Table'[Group]=EARLIER('Table'[Group])&&'Table'[Type]=EARLIER('Table'[Type])))

38.png

 

 

 

 

 

 

Best Regards,

Amy

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Anonymous
Not applicable

Hi,

Depending on what you want to achieve, this can be done with a simple matrix. 

Add Land, Group, Type in Rows

Add Value in Values

 

Drill down and format as required.

Anonymous
Not applicable

Hi @Anonymous ,

 

thanks for your reply.

But I need it as a calculated column. I have to calculate some other values with this column.

 

BR

Timo

Anonymous
Not applicable

Try this:

 

CalcTable =
SUMMARIZECOLUMNS (
    Table1[Land],
    Table1[Group],
    Table1[Type],
    "Sum Value", SUM ( Table1[Value] )
)

@Anonymous  Please try this as a "New Table"

 

GroupingTestOut = SUMMARIZECOLUMNS(GroupingTest[Land],GroupingTest[Group],GroupingTest[Type],"Total Value",SUM(GroupingTest[Value]))

image.png





Did I answer your question? Mark my post as a solution!

Proud to be a PBI Community Champion




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.