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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

calculation line number correct but not on total

hi,

have created an measure, qty * salesprice which works on orderline level but if the order has multiple lines i get wrong results:

Ordernr  Orderline  QTY  Salesprice  Total

  100           1            10         50          500

  100           2              5         40          200

  100           3              6         60          360

So, for ordernr 100, we have sold 21 pcs with a revenue of 1060 but due to the fact that the total Salesprice=150, we have instead of 1060 revenue, 3150.... You could say, do not summarize the Salesprice but we need this info for analysis purposes! 

Also tried to use a calculation like this, but it is also not working properly:

TEST=

VAR ORDERLINENUMER = SELECTEDVALUE(Fact_Sales[Orderline nr])
VAR ORDERNUMBER = SELECTEDVALUE(Fact_Sales[Order Number])

RETURN
CALCULATE( Fact_Sales[InvoicedQty]*fact_sales[Total Sales price no discounts], KEEPFILTERS(ORDERLINENUMER = Fact_Sales[Orderline nr]), KEEPFILTERS(ORDERNUMBER=Fact_Sales[Order Number]))

any ideas???

Thanks in advance!!!

Maarten

1 ACCEPTED SOLUTION
wdx223_Daniel
Super User
Super User

sumx(fact_sales,Fact_Sales[InvoicedQty]*fact_sales[Total Sales price no discounts])

??

View solution in original post

2 REPLIES 2
wdx223_Daniel
Super User
Super User

sumx(fact_sales,Fact_Sales[InvoicedQty]*fact_sales[Total Sales price no discounts])

??

Anonymous
Not applicable

hi Daniel,

 

was too enthousiastic by your solution, unfortunately it is not working properly as well.... 😞

with the suggested sumx statement only half the value is presented. F.e. if you take the 3rd line in my example then instead of having 360 as result, it will now give me 180.....

 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 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.