Hi, I am trying to import a csv data set into sas and I keep geting this error. Problems were detected with provided names. See LOG. 19950 proc import 19950! datafile='C:\Users\mp675\Contacts\Desktop\Robert\alimliquida\AlimLiqdataset.csv' out=one 19950! replace; 19951 /********************************************************************** 19952 * PRODUCT: SAS 19953 * VERSION: 9.4 19954 * CREATOR: External File Interface 19955 * DATE: 13MAR20 19956 * DESC: Generated SAS Datastep Code 19957 * TEMPLATE SOURCE: (None Specified.) 19958 ***********************************************************************/ 19959 data WORK.ONE ; 19960 %let _EFIERR_ = 0; /* set the ERROR detection macro variable */ 19961 infile 'C:\Users\mp675\Contacts\Desktop\Robert\alimliquida\AlimLiqdataset.csv' 19961! delimiter = ',' MISSOVER DSD lrecl=32767 firstobs=2 ; 19962 informat farm_date_id_id3_id2_nefa_bhba_b $82. ; 19963 format farm_date_id_id3_id2_nefa_bhba_b $82. ; 19964 input 19965 farm_date_id_id3_id2_nefa_bhba_b $ 19966 ; 19967 if _ERROR_ then call symputx('_EFIERR_',1); /* set ERROR detection macro variable */ 19968 run;
... View more