Forum Discussion
Grunstra
9 years agoRegular Visitor
Display\Find The first Date that Inventory QTY goes Negative based on Running Net Inventory Totals
I need a way to find when an Item running Inventory On Hand QTY first goes negative and display its Due_date.. Example see screen shot where I have Running Inventory totals per Orders. I have a Due_D...
- 9 years ago
Hi Grunstra,
I thought your resource table in same table, I understand now. Please create a measure using the formula, then add it to your table report.New Due-Date = MINX(FILTER('OrdersOpen-All','OrdersOpen-All'[Net Inv RT]<0),'OrdersOpen-All'[due_date])
Best Regards,
Angelia
v-huizhn-msft
Microsoft Employee
9 years agoHi Grunstra,
I thought your resource table in same table, I understand now. Please create a measure using the formula, then add it to your table report.
New Due-Date = MINX(FILTER('OrdersOpen-All','OrdersOpen-All'[Net Inv RT]<0),'OrdersOpen-All'[due_date])
Best Regards,
Angelia
Grunstra
9 years agoRegular Visitor
Sweet!! Thanks. How can I also get the Order QTY related to the due when it first went Negative?
- v-huizhn-msft9 years ago
Microsoft Employee
Hi Grunstra,
I use the min function, it has calculated the earliest date went Negative.
Best Regards,
Angelia - Grunstra9 years agoRegular Visitor
Any way to get the ON Hand Inventory QTY on that Due Date?