Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register 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! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
145 | |
85 | |
66 | |
52 | |
48 |
User | Count |
---|---|
215 | |
90 | |
83 | |
67 | |
59 |