Altair slc flexible hex dump for examining a messy text or binary file
Too long to post here, see github
Ops question
I am trying to read a .txt data file into SAS using infile.
It looks like there is an issue, but I could not determine what it is.
Any help to fix this would be greatly appreciated.
I suggest you use a hex dump to examone the file.
github
https://github.com/rogerjdeangelis/utl-altair-slc-flexible-hex-dump-for-examining-a-messy-text-or-binary-file
Your file is tab delimited, this worked for me
data want ;
infile "d:/txt/GISDATAnew2.txt"
dlm = '09'x
firstobs = 2
;
input region$ type$ x1 y x2-x17;
run;quit;
see these files in the repo
SAS listserve
https://listserv.uga.edu/scripts/wa-UGA.exe?A2=SAS-L;e294b8bb.2512A&S=
fix this would be greatly appreciated.