Hi,
I am new to SAS, the program below does not work, gives me this error:
ERROR: File WORK.ADMITDATE1.DATA does not exist.
I would really appreciate the help.
Thanks,
Sudhir
data frequency;
input AdmitDate1 date9.;
set AdmitDate(keep=AdmitDate1
where=(AdmitDate1 between '01Jan2003'd and
'30Jun2006'd));
format AdmitDate mmddyy10.;
datalines;
01Apr2002
01Apr2004
01Apr2005
01Apr2006
;
title "Frequency of Admissions";
proc print data=frequency ;
run;
I am new to SAS, the program below does not work, gives me this error:
ERROR: File WORK.ADMITDATE1.DATA does not exist.
I would really appreciate the help.
Thanks,
Sudhir
data frequency;
input AdmitDate1 date9.;
set AdmitDate(keep=AdmitDate1
where=(AdmitDate1 between '01Jan2003'd and
'30Jun2006'd));
format AdmitDate mmddyy10.;
datalines;
01Apr2002
01Apr2004
01Apr2005
01Apr2006
;
title "Frequency of Admissions";
proc print data=frequency ;
run;