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

I am running a code like this 

data test test1;

set sample;

if id in ("10") and code in ("26", "260", "8") then do;

check = yes;

output test;

run;

 

This is fetching records for (10, 260) but not for (10, 26) and (10,  8 )

please suggest

1 ACCEPTED SOLUTION

Accepted Solutions
JosvanderVelden
SAS Super FREQ

Please look at the following example:

data have;
   input id $ code $;
datalines;
10 26
10 260
10 8
1 2
;
run;

data want want_all;
set have;
if id in ("10") and code in ("26", "260", "8") then do;
	check = 'yes';
	output want;
end;
output want_all;
run;

View solution in original post

3 REPLIES 3
Kurt_Bremser
Super User

If the values are right-aligned in the character variable, use the LEFT or STRIP functions to get rid of the leading blanks. Or include the leading blanks in your values in the IN list.

JosvanderVelden
SAS Super FREQ

Please look at the following example:

data have;
   input id $ code $;
datalines;
10 26
10 260
10 8
1 2
;
run;

data want want_all;
set have;
if id in ("10") and code in ("26", "260", "8") then do;
	check = 'yes';
	output want;
end;
output want_all;
run;
nxmogil
Fluorite | Level 6

Thank you

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

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

View all other training opportunities.

Discussion stats
  • 3 replies
  • 146 views
  • 2 likes
  • 3 in conversation