Hi, I imported a csv file with the following code : proc import out=GSM datafile='V:\3613_DEPT_CONTROLE_DE_GESTION\Transverse\ANAPLAN\PALLIATIFS_DIRECT_PBI\commissions\GSM.csv' DBMS=csv replace; delimiter = ";"; run; In the GSM.csv file, one column is "Comax Code" and the format is character. For example, "0000001" SAS put automatically an informat : numeric and "0000001" become the number 1 To fix that I try : proc import out=GSM datafile='V:\3613_DEPT_CONTROLE_DE_GESTION\Transverse\ANAPLAN\PALLIATIFS_DIRECT_PBI\commissions\GSM.csv' DBMS=csv replace; delimiter = ";"; informat "Comax Code" $8.; run; But I still have the wrong informat : Thanks for any help 🙂
... View more