So I have a .csv file that has what I call hard-returns in it. I'm posting an example below in HAVE. From the example below, I need it to read in 3 records instead of 4. The 2nd record, the Field should read, "Example Test Example Return" I've tried variations of TERMSTR=CR, SCANOVER, FLOWEVER, etc. I would love any potential help. Thank you! HAVE: Field1,Field2,Field3 X,Example Test,100 X,"Example Test Example Return",200 X,Example Test,300 CODE DATA NEWFILE; INFILE TEMP DLM= "," DSD LRECL=32767 FIRSTOBS=2; INPUT Field1 :$10. Field2 :$10. Field3 :$10. ; RUN;
... View more