Dear All, I am infant to SAS and this is my first post on SAS , Uploaded CSV file to one of my folder and also able to read the data from csv file .,But I would like to get all the columns of CSV file .Can any one help me how can I do it data tableau;
infile '/folders/myfolders/DataFiles/SuperstoreSales.csv' delimiter=',' firstobs=2 ;
input RowID OrderID Order Date$ Profit$;
run;
proc print data=tableau;
run;
... View more