Hi,
I am trying to get all the data sets after 10/01/07. This is what I have:
Data new;
set old;
informat date mmddyy8.;
format date mmddyy8.;
length track $ 3;
track = 'No'; if date > '10/01/07' then track 'Yes';
run;
It says that '10/01/07' is not valid. What should be there? I googled all over the place and I can't find a solution. Thanks for help.
I am trying to get all the data sets after 10/01/07. This is what I have:
Data new;
set old;
informat date mmddyy8.;
format date mmddyy8.;
length track $ 3;
track = 'No'; if date > '10/01/07' then track 'Yes';
run;
It says that '10/01/07' is not valid. What should be there? I googled all over the place and I can't find a solution. Thanks for help.