When i am trying to import a CSV file directly from zipped file(winzip) i get a extra column in the the SAS dataset.I also tried to manually unzip the zip file (winzip)and the import the CSV file the sas dataset created was fine(no extra blank row).I really don't understand why this changes are observed. eg; after importing data from zipped file data looks below. product substance code A M 1 B N 2 C O 3 D P 4 E Q 5 F R 6 G S 7 Actual table should look like below. product substance code A M 1 B N 2 C O 3 D P 4 E Q 5 F R 6 G S 7 code: data check; infile inzip("data.csv") delimiter = ',' MISSOVER DSD firstobs=2 ; length product $20. substance $18. code 6.; input product $ substance $ code; run; Thanks in Advance!
... View more