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
Claudine
Regular Visitor

Sum of a column grouped by value in another column

Hello

I'm trying to do a simple summary (simple in Excel i.e. but I can't make Power BI work

If I have the following example table (simplified for this example but the actual data has multiple columns and rows) where I want to add a calculated column, in column D, where I would summarize sales based on the employee.

ABCD
1EmpProdSalesSalesXEmp
2
3Jonesapple100

125

4Blacksmithapple150250
5BlacksmithKiwi100250
6LakeKiwi7575
7JonesDates25125

In Excel, my sum formula (in cell D3) is simple: "SUMIF($A:$A,A3,$C:$C).

How do I recreate this summary based on the value of a column (or add using group by) in Power BI using a measure?

Thank you.

1 ACCEPTED SOLUTION
danextian
Super User
Super User

Hi @Claudine ,

 

Try this as a measure:

Sum by Employee =
CALCULATE ( SUM ( 'Table'[Sales] ), ALLEXCEPT ( 'Table', 'Table'[Emp] ) )









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


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Claudine ,

AS a new column

SalesXEmp = sumx(filter(Table, [Emp]=earlier([Emp])),[Sales])Sales

As a new measure
SalesXEmp = calculate(sum(Table[Sales]),allexcept(Table, Table[Emp]))

danextian
Super User
Super User

Hi @Claudine ,

 

Try this as a measure:

Sum by Employee =
CALCULATE ( SUM ( 'Table'[Sales] ), ALLEXCEPT ( 'Table', 'Table'[Emp] ) )









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


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

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.