I want each daily report only show documents that were scanned after the last report was run. I don't want the report to be a running total of all previous documents.
PROC SQL;
CREATE TABLE ARG_REPORT
AS SELECT
VID,
LAST_NAME,
FIRST_NAME,
MI
FROM WORK.FINAL_RESULTS2;QUIT;
ARG_REPORT is the output, but gives all variables in the data. Need only today's scanned data. What can I do? Thanks!