Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
ramandeep007
Frequent Visitor

SUMX vs SUM gives different total - why

Hi,

 

I am learning X-Functions in PowerBI. I have table (visitData) in which there are 4 customer and their total number of visit and their spent per visit.

Customer, SpendPerVisit,No.OfVisit
a,50,7
b,40,3
c,100,12
d,15,4

Now, i am using measure to calculate their total spent per visit and AverageSpentPerVisit without using X-functions

 

AverageSpentPerVisit Wrong = AVERAGE(VisitData[spend per visit])
TotalSpentPerVisit = [AverageSpentPerVisit Wrong] * [TotalNoOfVisit]
it gives me result as below:-
Error.PNG
 
 
 
 
 
 
 
 
When i use X-Function and calculate Average = Divide(totalSpent,NoOfVisit) then it gives different result as shown in below :-
Measures : 
AverageSpentPerVisit New = DIVIDE([TotalSpentSumX],[TotalNo.OfVisit New])
 
correct.PNG
 
 
 
 
 
Can someone please help me to defferentiate the result between this?
Thanks in advance
 
1 ACCEPTED SOLUTION

Hi @affan,

 

Thanks for reply and helpin me. your solution is also working.

But i got work around the solution and i check the matrix total is right. Why, because

in this case, in the Total column is like :-

TotalOfTotalSpendPerVisit/TotalOfTotalNo.OfVisit

That's Why it is showing me $51 in first matrix and $66 in second matrix.

 

 

View solution in original post

4 REPLIES 4
affan
Solution Sage
Solution Sage

Hi @ramandeep007

 

If you see both of your total results you can understand that both of them are wrong.

In AverageSpentPerVisit Wrong the total is shown as 51.25.

In AverageSpentPerVisit New the total is shown as 66.54

 

Whereas the total should be 205. Your issue is not with the SUM or SUMX it is regarding the 'Row Context'

 

AverageSpentPerVisit Wrong = var _avg=AVERAGE(VisitData[spend per visit])
return
IF(HASONEVALUE(VisitData[Customer]),_avg,SUMX(VALUES(VisitData[Customer]),_avg))

 

If this helped you, please mark this post as an accepted solution and like to give KUDOS .

 

Regards,

Affan

Hi @affan,

 

Thanks for reply and helpin me. your solution is also working.

But i got work around the solution and i check the matrix total is right. Why, because

in this case, in the Total column is like :-

TotalOfTotalSpendPerVisit/TotalOfTotalNo.OfVisit

That's Why it is showing me $51 in first matrix and $66 in second matrix.

 

 

@ramandeep007,

 

Glad to hear that. You may help accept the solution above. Your contribution is highly appreciated.

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

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.