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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
texmexdragon2
Helper V
Helper V

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
texmexdragon2
Helper V
Helper V

@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
texmexdragon2
Helper V
Helper V

@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

 

@texmexdragon2 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.


@ 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!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...
Greg_Deckler
Super User
Super User

@texmexdragon2 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]))

@ 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!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.