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

Hi,

 

I have the following Case Statement but it doesn't seem to be working as I get the same output for each row ('Exclude') and I think it's due to not understanding 'NULL'. 

 

case when Curr_Order <> 'null ' and Prev_Order = 'Null' then 'Include' else 'Exclude' end as Order_test

 

Any idea how I could resolve this please? 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
PeterClemmensen
Tourmaline | Level 20

ok. Either use blanks instead of 'Null' then or use the Missing Function

 

 

View solution in original post

3 REPLIES 3
PeterClemmensen
Tourmaline | Level 20

1) Use ne instead of <>. <> returns the smallest of two arguments. See this

 

data _null_;
    a= 1 <> 10;
    put a;

    b=1 >< 10;
    put b;
run;

2) Does your data contain the string 'Null'/'null' or are you talking about missing values?

KC_16
Fluorite | Level 6

Thank you, I have changed to 'ne'. 

 

The data is blank, no values in there so technically missing data. 

PeterClemmensen
Tourmaline | Level 20

ok. Either use blanks instead of 'Null' then or use the Missing Function

 

 

sas-innovate-wordmark-gradient-background 3.pngSAS Innovate

Call for content now open!

It's your turn to help shape SAS Innovate 2027. Share your expertise and inspire the SAS community.

Submit your proposal →

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

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