List of Customers that have never bought fromYou
This will put the report on the screen, so you print it or download.
Then X to exit back to TCL.
SORT CUST BY NAME WITH LAST.BUY.DATE = “” BY ID NAME
*To get list of customers and last buy date for a certain time frame:
SORT CUST BY NAME WITH LAST.BUY.DATE >=“xx/xx/xx” AND WITH LAST.BUY.DATE <=“yy/yy/yy” BY ID NAME LAST .BUY.DATE
*Replace xx/xx/xx and yy/yy/yy with begin date and end date, respectively.