that
i wrote the above syntax but that doesnt cut it.
please help
thanx
Ok. There is a number of things wring with your code. First and foremost, your inequality signs are in the wring direction. No date value can be smaller than 01jan2010 and larger than 31dec2015...
I have written this template from the sashelp.stocks data set. Should give you what you want.
data test;
set sashelp.stocks;
prevalence = (('01jan1998'd <= date <= '31dec2000'd) and (stock='IBM'));
run;
So, you want prevalance to be a dummy variable, correct? Do you get errors in the log?
Ok. There is a number of things wring with your code. First and foremost, your inequality signs are in the wring direction. No date value can be smaller than 01jan2010 and larger than 31dec2015...
I have written this template from the sashelp.stocks data set. Should give you what you want.
data test;
set sashelp.stocks;
prevalence = (('01jan1998'd <= date <= '31dec2000'd) and (stock='IBM'));
run;
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.