Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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.
Solved! Go to Solution.
@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:
@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:
@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.
@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]))