BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.


Hi,

I have some code that runs fine but when i add in the case statement on Proc SQL it 'falls over'. Can anyone please advise where I am going wrong with the complete statement?

PROC SQL;
create table work.red as
select
num,
month_date,
arrs,
remaining_months, 
platform,
valuation,
Type,

count(*) as count,
avg (tv) ,
avg (bal),

case when 
remaining_months <= 1 then 'End'
else if Remaining_months <= 12 then 'End OP'
else if arrs not in '1' then 'Ars' else 'Rege' end as Red_son

from
sun.sunny

where
platform = 'O'
and Arrs not in ('L4','L5','L6')

group by

num,

month_date

arrs

remaining_months 

platform

valuation

Type

quit;

1 ACCEPTED SOLUTION

Accepted Solutions
stat_sas
Ammonite | Level 13

Try modifying case statement syntax in above.

case

when  remaining_months <= 1 then 'End'

when Remaining_months <= 12 then 'End OP'

when arrs ne '1' then 'Ars'

else 'Rege' end as Red_son

View solution in original post

2 REPLIES 2
stat_sas
Ammonite | Level 13

Try modifying case statement syntax in above.

case

when  remaining_months <= 1 then 'End'

when Remaining_months <= 12 then 'End OP'

when arrs ne '1' then 'Ars'

else 'Rege' end as Red_son

RW9
Diamond | Level 26 RW9
Diamond | Level 26

Hi,

you are mixing SAS syntax and SQL there:

case      when     remaining_months <= 1 then 'End'
              when     Remaining_months <= 12 then 'End OP'
              when     arrs not in '1' then 'Ars'

              else       'Rege' end as Red_son

The syntax is:

case     when  [condition] then [result]

               else [fallout response] end

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 681 views
  • 0 likes
  • 3 in conversation