I am comparing files using the EXCEPT logic. It is returning all row rather than the differences. By process of elimination, it appears to be the date. The output in both files is displayed the same (MM/DD/YYYY).
Input from first file is derived from existing sas tables and formatted NLDATMDT10.
Input from other is from .csv import and is formatted MMDDYY10.
proc sql; CREATE TABLE Attendance_Compare AS select * from WORK.ATTNYEST except select * from WORK.DAILYATTENDANCE;
Help! I tried several date changes and am getting nowhere.
... View more