Hello, As I import a txt file (with French characters) I notice that for certain rows SAS reads the delimiter (|) as a character which then causes an invalid data error for subsequent variables. Please see snip below. FM should have actually been read as the next variable. Code I use is: PROC IMPORT DATAFILE=REFFILE DBMS=TAB OUT= work.TESTDP replace; guessingrows=100; DELIMITER = '|'; GETNAMES=NO; RUN; Thanks for your help!
... View more