Hello,
I need to create a variable and assigned a character value based on the criteria.
I need to do this step by using the proc sql.
When I am using following code, I am getting an error.
proc sql;
create table test2 as
select *, case
when ( length(strip(_datetime)) GE 9 ) then
when _date1 GT _date2 then 'N'
end as var1_new
end
from test1 ;
You can't compound the conditions with another WHEN ( you would need another CASE) or add an AND.
when ( length(strip(_datetime)) GE 9 ) & _date1 GT _date2 then 'N'
end as var1_new
The other END makes me wonder if this is already part of a nested case statement though, which means you may need to post the whole nest to debug it.
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.