Hello SAS Users,
I'm trying to submit the following case when expression and I get the error message that components are of different types.
PROC SQL;
CREATE TABLE work.test AS SELECT * ,
CASE WHEN CLI in ('4244','6454654') THEN 'Approved'
END AS status,
case when apps in ('25','5') then 'In process'
else 'other' end as req
from work.info
quit;
I appreciate your help
Well its either:
case when cli in (4244,6454654) then 'Approved' end as status,
Or:
case when apps in (25,5) then 'In process' else 'other' end as req
Or both. Basically your comparing a variable of type numeric to character or vice versa.
If you had provided either/or - test data in the form of a datastep, the actual log output, I could be more specific.
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.