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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 3 replies
  • 423 views
  • 0 likes
  • 2 in conversation