Hi, everyone. I just started using SAS. I don't know how to import a text file. Here an example of my text file: code;description;total 1;hi;201 2;hey;301 3;good;401 That's it. BTW I don't know the field length just that it's semicolon delimited. I just tried this but it doesn't work: data Nombre_cuentas_cualit_1001 infile "C:\proyecto_sas_bv\Nombre_cuentas_cualit_1001.txt" dlm=';'; input code--total; run;
... View more