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

I would like to find siteid in the site_affected. If it's in the list then I can do something afterward. However, I was not able to use the find, index function to achieve this.

 

I have tried

 

if index(site_affected, siteid) gt 0 then do;

date = 01/JAN/1990;

date2 = 02/JAN/2990;

end;

 

siteid               site_affected

1071                1059; 1061; 1100; 1105; 1190; 1003; 1017; 1022; 1063; 1071; 1144

 

date and dates are empty from the code.

Will appreciate any input!

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

Assuming that both variables are character, you should be able to make a small change:

 

if index(site_affected, strip(siteid)) gt 0 then do;

 

That will remove extra blanks that might be part of SITEID, making the longer-version-with-blanks appear is though it as not part of SITE_AFFECTED.

 

There are other possibilities using FINDW, but based on what you posted it looks like this simpler version should be fine.

View solution in original post

2 REPLIES 2
Astounding
PROC Star

Assuming that both variables are character, you should be able to make a small change:

 

if index(site_affected, strip(siteid)) gt 0 then do;

 

That will remove extra blanks that might be part of SITEID, making the longer-version-with-blanks appear is though it as not part of SITE_AFFECTED.

 

There are other possibilities using FINDW, but based on what you posted it looks like this simpler version should be fine.

leela214
Calcite | Level 5
Thank you so much! It work. I tried using the option, 't' -trim in other function too, but didn't work too. I'm glad you were able to solve my question!

CFC_SAS_Communities_400x225.jpg

Call for content now open!

It's your turn to help shape SAS Innovate 2027. Share your expertise and inspire the SAS community.

Submit your proposal →

Develop Code with SAS Studio

Get started using SAS Studio to write, run and debug your SAS programs.

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