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

Running the code below I am expecting to see a 'null' for the check2 variable from the third row.  I get a 'wrong'.  Can someone explain why?

Thank You,

data ifc;

infile cards dsd;

input one two three;

cards;

1,2,3

,2,3

1,,3

1,3, 

;

run;

data test;

set ifc;

check1 = ifc(one,.,'one is null');

check2 = ifc(two = 2,'right','wrong','null');

run;

1 ACCEPTED SOLUTION

Accepted Solutions
Haikuo
Onyx | Level 15

I have made some modifications on your data and your code, now you can easily figure out what is going on:

data ifc;

     infile cards dsd;

     input one two three;

     cards;

1,2,3

,0,3

1,,3

1,3, 

;

run;

data test;

     set ifc;

     check1 = ifc(one,.,'one is null');

     check2 = ifc(two,'right','wrong','null');

run;

Update: a boolean evaluation such as 'two=2' will never be missing, it is either 1 or 0, so this is why you are not getting 'null' as an outcome.

View solution in original post

3 REPLIES 3
PGStats
Opal | Level 21

Try :

data test2;

desc = "2 = 1"; c = 2 = 1; output;

desc = "2 = ."; c = 2 = .; output;

desc = ". = ."; c = . = .; output;

run;

pric print data=test2; run;

PG

PG
Haikuo
Onyx | Level 15

I have made some modifications on your data and your code, now you can easily figure out what is going on:

data ifc;

     infile cards dsd;

     input one two three;

     cards;

1,2,3

,0,3

1,,3

1,3, 

;

run;

data test;

     set ifc;

     check1 = ifc(one,.,'one is null');

     check2 = ifc(two,'right','wrong','null');

run;

Update: a boolean evaluation such as 'two=2' will never be missing, it is either 1 or 0, so this is why you are not getting 'null' as an outcome.

Steelers_In_DC
Barite | Level 11

Excellent, thank you!

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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