cesartiburcio, I think the problem is that you are trying to tell it to input a date without specifying some information beforehand. To get the format to be read in correctly and applied I think you will need to specify a length, informat, and format as well as the input statement. Below is some code that should import it correctly. data maria; length idvol $7. datevol 8 totalpass 3 poidscargo 5; informat idvol $7. datevol date9. totalpass BEST3. poidscargo BEST5.; format idvol $7. datevol date9. totalpass BEST3. poidscargo BEST5.; infile 'C:\Users\Cesar\Desktop\tpnote\ssd.dat'; input @1 idvol $1-7 @40 datevol date9. @64 totalpass BEST3. @68 poidscargo BEST5.; run; Also make sure that the pointers are going to the right places. When I pulled your data off of your post, the date actually started at 38, but it may have just been the way that I copied and pasted. Hope this helps
... View more