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;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.