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
9 years agoMicrosoft Employee
Hi Grunstra,
I use the min function, it has calculated the earliest date went Negative.
Best Regards,
Angelia
Grunstra
9 years agoRegular Visitor
Any way to get the ON Hand Inventory QTY on that Due Date?