Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Lost Sales Analysis
01-24-2017, 02:30 AM,
#1
Lost Sales Analysis
Hi is there anyway to generate a report that show the lost sales one has between the PO of the customer and the invoice when we don't have enough to complete the PO?
Reply
01-24-2017, 03:22 AM,
#2
RE: Lost Sales Analysis
The following SQL should provide you with a list of order numbers where the whole quantity wasn't invoiced but the line is marked as complete

SELECT orderno FROM salesorderdetails WHERE quantity<>qtyinvoiced AND completed=1;

If this is what you want then it wouldn't be hard to work that SQL up into a report,

Thanks
Tim
Reply
01-25-2017, 08:06 AM,
#3
RE: Lost Sales Analysis
Hi Tim:
Thanks a lot that is exactly what i need.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)