Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hi all,
I want to analyse inventory using Demand and Stock data. Please see table below:
STOCK
DEMAND
RESULT
How can i achieve this based on SKU please?
Thanks
Solved! Go to Solution.
@mb0307 , You have to create a new table
SKU =distinct(union(distinct(stock[SKU ]),distinct(demand[SKU])))
Join with both tables on SKU and use with both Table
Stock Over/Under = Sum(stock[Stock]) - sum(demand[demand])
@mb0307 , You have to create a new table
SKU =distinct(union(distinct(stock[SKU ]),distinct(demand[SKU])))
Join with both tables on SKU and use with both Table
Stock Over/Under = Sum(stock[Stock]) - sum(demand[demand])