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

Hi All,

 

I hope this message finds you well. I was wondering if there is any way to select participants who answered the cesd question more than once. Thanks!

 

ID cesd1 cesd2 cesd3 cesd4 cesd5  
1 . 0 . 1 2 keep
2 . . . . 5 delete
3 1 . . . . delete
4 . 1 . 2 . keep
5 0 2 1 2 4 keep
1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

Assuming the variables are numeric you can use the N() function to see how many non-missing values there are.

data want;
  set have;
  if n(of cesd1-cesd5)<2 then delete;
run;

View solution in original post

2 REPLIES 2
Tom
Super User Tom
Super User

Assuming the variables are numeric you can use the N() function to see how many non-missing values there are.

data want;
  set have;
  if n(of cesd1-cesd5)<2 then delete;
run;
nwang5
Obsidian | Level 7
Thanks for your quick response! You are so nice. Thank you very much!

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
  • 2 replies
  • 227 views
  • 1 like
  • 2 in conversation