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

The third row of dataset New, the column visit should  be 'Missing',why I got 'Retreat'?

 

Here is SAS code:

data old;
input sitesub $ vtype vdate $;
cards;
01-303 1.4 12/23/2005
01-304 1.5 09/03/2005
01-308 . 04/30/2005
01-305 1.4 10/09/2005
01-306 1.5 11/17/2005
01-307 1.5 05/29/2005

;
run;
data new;
set old;
length visit $20;
visit=ifc(vtype=1.4,'Baseline','Retreat','Missing');
run;

 

1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

It's not working as expected because the result of the comparison if vtype=1.4 can only be true or false, thus never has a missing value.

 

You can get it to do what you want by nesting two ifc functions:

 

data new;
  set old;
  length visit $20;
  visit=ifc(missing(vtype),'Missing',ifc(vtype=1.4,'Baseline','Retreat'));
run;

 

Alternatively, you could express the condition in a form that would set it to missing if the value were missing. e.g.,

data new;
  set old;
  length visit $20;
  visit=ifc(1.4*(vtype eq 1.4),'Baseline','Retreat','Missing');
run;

 

Art, CEO, AnalystFinder.com

 

View solution in original post

2 REPLIES 2
art297
Opal | Level 21

It's not working as expected because the result of the comparison if vtype=1.4 can only be true or false, thus never has a missing value.

 

You can get it to do what you want by nesting two ifc functions:

 

data new;
  set old;
  length visit $20;
  visit=ifc(missing(vtype),'Missing',ifc(vtype=1.4,'Baseline','Retreat'));
run;

 

Alternatively, you could express the condition in a form that would set it to missing if the value were missing. e.g.,

data new;
  set old;
  length visit $20;
  visit=ifc(1.4*(vtype eq 1.4),'Baseline','Retreat','Missing');
run;

 

Art, CEO, AnalystFinder.com

 

Tom
Super User Tom
Super User

IFC() might be a useful function in the right place, but this example is one where using normal IF/THEN is probably better.

data new;
set old;
length visit $20;
if missing(vtype) then visit='Missing';
else if vtype=1.4 then visit='Baseline';
else visit='Retreat';
run;

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
  • 817 views
  • 3 likes
  • 3 in conversation