Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
I've got a table called STOK and one called INVENTORY. Each table has a record called InvUnq what is the inventory unique number.
The STOK table has multiple lines in it showing the stock transactions.
The INVENTORY table has only one line for each inventory item/
I'm wanting to make a column in the INVENTORY table that has the total stock level based off the multiple lines in the STOK table.
Example.
STOK table
InvUnq = 1 , Qty = 5
InvUnq = 1, Qty = 4
on the INVENTORY TABLE I want to make new column called "total stock" that would add the qty of both lines (they are the same part as the unique number is 1 for both of them).
How to do I do a sum based on totaling all the parts in the STOK table to display as one number in the INVENTORY column called Total Stock I just made?
Thanks!!!
Solved! Go to Solution.
Hey,
due to the fact that the INVENTORY table has on line per item you can leverage the power of relationships. Create a relationship between the table INVENTORY on the one side and the table STOK on the many side like so:
This allows to create a calculated column inside the INVENTORY table using this DAX statement:
Column = CALCULATE(SUM('STOK'[Qty]))
Hopefully this is what you are looking for.
Regards,
Tom
Hey,
due to the fact that the INVENTORY table has on line per item you can leverage the power of relationships. Create a relationship between the table INVENTORY on the one side and the table STOK on the many side like so:
This allows to create a calculated column inside the INVENTORY table using this DAX statement:
Column = CALCULATE(SUM('STOK'[Qty]))
Hopefully this is what you are looking for.
Regards,
Tom
Thanks!
Is is possible to do this as column not a measure?
Hey,
as I stated just create a calculated column in the inventory table:
Regards,
Tom
My appologies, I misread. Thank you so kindly!
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
89 | |
88 | |
82 | |
64 | |
49 |
User | Count |
---|---|
125 | |
111 | |
88 | |
69 | |
66 |