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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Anonymous
Not applicable

Do not want an aggregated total

Hello  -  Our ERP system spits out a column called "Total Price".    What is happening is that the total price is assigned to each line when it gets into Power Bi and ends up like this....which gives me incorrect totals.   Even if I remove the Order Line from the matrix, I still get the 5,042 total.     What I am trying to achieve is to have the correct total show, which should be the 840,420.    I've tried HASONEVALUE but with no luck.   

 

New Sum of Total Price = IF(HASONEVALUE(ShippedOrdersALL_Query[Order Number]),[Sum of Total Price],SUMX(VALUES(ShippedOrdersALL_Query[Order Number]),[Sum of Total Price]))

 

texmexdragon2_0-1666109936940.png

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@Greg_Deckler   Hi Greg  -  I worked out a simple solution that seems to work.   Unfortunately (and surprisingly!) your solution didn't work.    I called yours the New New Sum.   

But here is the one that worked:  

New Sum of Total Price = SUMX(VALUES(ShippedOrdersALL_Query[TotalPrice]),ShippedOrdersALL_Query[TotalPrice])



texmexdragon2_0-1666112332838.png

 

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

@Greg_Deckler   Hi Greg  -  I worked out a simple solution that seems to work.   Unfortunately (and surprisingly!) your solution didn't work.    I called yours the New New Sum.   

But here is the one that worked:  

New Sum of Total Price = SUMX(VALUES(ShippedOrdersALL_Query[TotalPrice]),ShippedOrdersALL_Query[TotalPrice])



texmexdragon2_0-1666112332838.png

 

@Anonymous Glad you got it! One nit-pick, I wouldn't use VALUES but rather DISTINCT. Unless you want that blank row that VALUES can return.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...
Greg_Deckler
Community Champion
Community Champion

@Anonymous Try this:

New Sum of Total Price = IF(HASONEVALUE(ShippedOrdersALL_Query[Order Number]),[Sum of Total Price],AVERAGEX(VALUES(ShippedOrdersALL_Query[Order Number]),[Sum of Total Price]))


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors
Top Kudoed Authors