Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hey All
I have a table with all order lines. This means I have multiple rows per order. Each row is an Articleposition. I would like to sum up all articles per order.
Mey expected Result:
orderID | Price | TotalOrderPrice |
1 | 10 | 60 |
1 | 20 | 60 |
1 | 30 | 60 |
2 | 10 | 50 |
2 | 10 | 50 |
2 | 10 | 50 |
2 | 10 | 50 |
2 | 10 | 50 |
I have managed to get to that result by using below dax formula:
TotalOrder = SUMMARIZECOLUMNS('Lian CH$Sales Invoice Line'[OrderNo],"Total", sum('Lian CH$Sales Invoice Line'[AmoutNoVat]))
However, this is only working when creating a new table. This does not work for a measure.
Is there any way to use it as a measure.
Thank you in Advance
Solved! Go to Solution.
@JonasDedual , Try a measure like
TotalOrderPrice = sumx(filter(allselected('Lian CH$Sales Invoice Line'), 'Lian CH$Sales Invoice Line'[OrderNo] = max('Lian CH$Sales Invoice Line'[OrderNo] )),'Lian CH$Sales Invoice Line'[AmoutNoVat])
I don't think you need either for this.
Try this:
TotalOrderPrice =
CALCULATE (
SUM ( Sales[Price] ),
ALLEXCEPT ( Sales, Sales[orderID] ),
ALLSELECTED ()
)
@JonasDedual , Try a measure like
TotalOrderPrice = sumx(filter(allselected('Lian CH$Sales Invoice Line'), 'Lian CH$Sales Invoice Line'[OrderNo] = max('Lian CH$Sales Invoice Line'[OrderNo] )),'Lian CH$Sales Invoice Line'[AmoutNoVat])
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
112 | |
95 | |
91 | |
82 | |
69 |
User | Count |
---|---|
161 | |
126 | |
119 | |
109 | |
95 |