library work 'c:\documents and settings\desktop\s'
data s.sas;
infile 'C:\Documents and Settings\Desktop\sas.prn' firstobs=2;
input subject salary job jobtitle $ yrsatjob gender age manager $;
run;
I cannot get this code to read in an excel sheet into SAS. I am saving it as a space delimited file. Any help? This should be very simple but I am getting output that is only the odd numbered observations and the data is shifted right and rearranged within the ouput file. ANY HELP/SUGGESTIONS?
data s.sas;
infile 'C:\Documents and Settings\Desktop\sas.prn' firstobs=2;
input subject salary job jobtitle $ yrsatjob gender age manager $;
run;
I cannot get this code to read in an excel sheet into SAS. I am saving it as a space delimited file. Any help? This should be very simple but I am getting output that is only the odd numbered observations and the data is shifted right and rearranged within the ouput file. ANY HELP/SUGGESTIONS?