March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi All,
Did already some researched but did not find a solution.
I want to show/calculate per order the outstanding quantity of each item number.
The challenge here is the order and item number can exist of 1 or 2 positions in the source file.
You can find here an example of the desired solution.
Any help will be appreciated.
Kind regards,
Kwokster
Solved! Go to Solution.
Hi @Kwokster ,
Try to create a measure like so:
Open =
VAR Ordered_ =
AVERAGE ( 'Table'[Ordered] )
VAR Received_ =
SUM ( 'Table'[Received] )
RETURN
Ordered_ - Received_
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Kwokster ,
Try to create a measure like so:
Open =
VAR Ordered_ =
AVERAGE ( 'Table'[Ordered] )
VAR Received_ =
SUM ( 'Table'[Received] )
RETURN
Ordered_ - Received_
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Kwokster
try a measure like
Measure =
var _totReceived = CALCULATE(SUM(Table[Received]), ALLEXCEPT(Table, Table[Order nr.], Table[Item number]) )
var _totOrdered = CALCULATE(AVERAGE(Table[Ordered]), ALLEXCEPT(Table, Table[Order nr.], Table[Item number]) )
RETURN
_totOrdered - _totReceived
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
125 | |
84 | |
66 | |
54 | |
43 |
User | Count |
---|---|
200 | |
107 | |
96 | |
64 | |
56 |