Hi guys, thanks for the replies ! Good news : with your help and a simple code, i am now able to import a excel file just coding it with this code : proc import out=testitest
datafile='C:\Users\LOTFI\Desktop\testguigui.xlsx';
run; It works, and i would not be able to do it without asking my questions here, so thanks. Bad news : if i want to import a csv file (file ==> Import => etc... OR coding it), i have this kind of thing : At first, on Excel, it is : When i code it : proc import out=testitest
datafile='C:\Users\LOTFI\Desktop\test.csv';
run; I try to add dlm=';' in different positions in this code, because i guessed maybe there a problem with that, but even if i dont code it and if i'm using the way with File==>Import ect..., it's the same. Here is the log window when i code it : Is it because when i change a excel file into a csv file, i have to do something special so it is recognized by SAS ? Anyway, thanks again for you quick help. I could not answer as quickly as you did but i knew i would go back here ^^ Cheers
... View more