Hello, With some help, I managed to upload csv data using SAS Studio V. For those with the same issue : 1. new SAS program 2. use this code: data namefordataset;
infile datalines delimiter=',';
/* replace variable 1->n by the variable names with $ after for character variables */
input variable1 $ variable 2 $ ... $ variable n $;
datalines;
/* copy/paste csv content */
;
run;
/*replace userid by your login userid (email adress) */
libname test '/shared/home/userid/casuser';
proc copy in=work out=test;
run; and run program. 3. When creating new project in Model Studio, for data go in data source tab, then search for casuser(your email) then your dataset. right click > load then choose the file created and confirm. Regards,
... View more