Hi, Here is the log of the code which has been run. No errors.! but the Id_date_birth are missing. Again if I just import these variables they will be imported properly. 660 Filename Alii'D:\want.tsv' encoding='utf8'; 661 662 data want; 663 %let _EFIERR_ = 0; /* set the ERROR detection macro variable */ 664 infile Alii delimiter='09'x TRUNCOVER DSD lrecl=32767 firstobs=2 ; 665 666 informat panel_year best32. ; 667 informat projection_factor best32. ; 668 informat projection_factor_magnet best32. ; 669 informat Id_Date_birth_1 anydtdtm40. ; 670 informat Id_Date_birth_2 anydtdtm40. ; 671 informat dma_code best32. ; 672 673 format panel_year best12. ; 674 format projection_factor best12. ; 675 format projection_factor_magnet best12. ; 676 format Id_Date_birth_1 datetime. ; 677 format Id_Date_birth_2 datetime. ; 678 format dma_code best12. ; 679 680 input 681 panel_year 682 projection_factor 683 projection_factor_magnet 684 Id_Date_birth_1 685 Id_Date_birth_2 686 dma_code 687 688 ; 689 if _ERROR_ then call symputx('_EFIERR_',1); /* set ERROR detection macro variable */ 690 run; NOTE: The infile Alii is: Filename=D:\want.tsv, RECFM=V,LRECL=131068, File Size (bytes)=10131988, Last Modified=11Jul2018:23:45:43, Create Time=19Jul2019:16:20:57 NOTE: 63150 records were read from the infile Alii. The minimum record length was 130. The maximum record length was 220. NOTE: The data set WORK.want has 63150 observations and 6 variables. NOTE: DATA statement used (Total process time): real time 0.15 seconds cpu time 0.14 seconds
... View more