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
jigon
Helper I
Helper I

Power BI Table Group Total

I have mock dataset looks like below. 

data.PNG

 

On my visualization, I have two problems: 

1) I am trying to show the total sales by group. - called "group total". But on my dataset, I have Item Code called "/return". I do not want to list "/return" on my visualization. So I filtered it out through filters. 

I created measure called "group total" with the following dax formula : 

group total = CALCULATE(SUM(Table1[Total Sales]),ALLEXCEPT(Table1,Table1[Group],Table1[Date]))
 
 
group.PNG
It populates what I want but it is including "/return" in the calculation. - I want the "group total" of group A to be $1700, not $1500. What should I change in my "group total" formula to get what I want? 

2. I want to add a column called "return" that sums all the "/return". So same group will show same amount of "return", just like "group total". 

I created measure "return" just to show you what I want. 
return = Calculate(Sum(Table1[Total Sales]),Filter(Table1,Find("/",Table1[Item code], ,0)<>0))
return.PNG

 

What I want eventually is something like this. 

answer.PNG


I hope I described my problem clear enough.
 

I would appreciate any help! 

1 ACCEPTED SOLUTION

Hi @jigon ,

I have modified my formula as below, you could have a try:

Measure = CALCULATE(SUM(Table1[Total Sales]),FILTER(ALL('Table1'),'Table1'[Group]=MAX('Table1'[Group])&&'Table1'[item code]<>"/return"))
Measure 2 = CALCULATE(SUM(Table1[Total Sales]),FILTER(ALLEXCEPT(Table1,Table1[Group],Table1[Date]),'Table1'[item code]="/return"))

Result:

1.PNG

You could also download the pbix file to have a view.

 

Regards,

Daniel He

Community Support Team _ Daniel He
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
v-danhe-msft
Employee
Employee

Hi @jigon ,

Based on my test, you could refer to below formula:

Measure = SUMX(CALCULATETABLE('Table1',FILTER(ALL(Table1),'Table1'[Group]=MAX('Table1'[Group]))),CALCULATE(ABS(SUM(Table1[Total Sales]))))
Measure 2 = CALCULATE(SUM(Table1[Total Sales]),FILTER(ALLEXCEPT(Table1,Table1[Group]),'Table1'[item code]="/return"))

Result:

1.PNG

You could also download the pbix file to have a view.

 

Regards,

Daniel He

Community Support Team _ Daniel He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi Daniel, 

Your solution has two problems. 

1. "Measure" doesn't total up correctly. It should be 1700 (800+600+300) for group A. 

2. "Measure2" doesn't reflect the date slicer. If I filter to February, Measure 2 still has values. But if you look at the dataset, February doesn't have "/return" value. 

Hi @jigon ,

I have modified my formula as below, you could have a try:

Measure = CALCULATE(SUM(Table1[Total Sales]),FILTER(ALL('Table1'),'Table1'[Group]=MAX('Table1'[Group])&&'Table1'[item code]<>"/return"))
Measure 2 = CALCULATE(SUM(Table1[Total Sales]),FILTER(ALLEXCEPT(Table1,Table1[Group],Table1[Date]),'Table1'[item code]="/return"))

Result:

1.PNG

You could also download the pbix file to have a view.

 

Regards,

Daniel He

Community Support Team _ Daniel He
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.