Forum Discussion
mb0307
4 years agoResponsive Resident
Over/Under Stock
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
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])
2 Replies
- amitchandakSuper User
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])
- mb0307Responsive Resident
Thank a lot amitchandak