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 experts!
table A
Part nr | Alternate Part nr |
A | B |
Table B
P/N | q-ty |
A | 1 |
B | 2 |
What is the formula for:
q-ty of any given P/N= q-ty of P/N + q-ty of its Alternate P/N
result:
Q-ty of P/N A= 3
Q-ty of P/N B= 3
many thanks
Solved! Go to Solution.
@aris the correct answer is 3 and 2 as B does not have an alternate part no. in table1
use this measure
Measure =
SUM ( t2[q-ty] )
+ CALCULATE (
SUM ( t2[q-ty] ),
TREATAS ( { MAX ( t1[Alternate Part nr] ) }, t2[P/N] )
)
@aris create relation of both the columns from table a to table b, one relationship will be active and other one will be inactive, add following measures:
Part No Qty = SUM ( TableB[Qty] ) //assuming active relationship is on part number
Alternate Part No Qty =
CALCULATE ( [Part No Qty], USERELATIONSHIP ( TableA[Alternate Part No], TableB[P/N] ) )
Final Output = [Part No Qty] + [Alternate Part No Qty]
You can put all above in one measure if you want, change table and column name as per your data model.
Learn about conditional formatting at Microsoft Reactor
My latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!
⚡ Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
thank you! will test it 🙂 🙂
@aris the correct answer is 3 and 2 as B does not have an alternate part no. in table1
use this measure
Measure =
SUM ( t2[q-ty] )
+ CALCULATE (
SUM ( t2[q-ty] ),
TREATAS ( { MAX ( t1[Alternate Part nr] ) }, t2[P/N] )
)
many thanks! will test it 🙂
yes you are right, P/N B will also be listed assuming two way interchangeable
@aris once you add that row for "B" in t1, it will give you what you had in mind
User | Count |
---|---|
122 | |
76 | |
63 | |
51 | |
50 |
User | Count |
---|---|
175 | |
125 | |
60 | |
60 | |
58 |