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

I have a very long character variable and want to create a binary variable 0/1 if any of the specific words is found. As shown in the following figure, I have the Diagnosis variable and want to create the Hypertension variable if the former contains any of he words in red font.

bayzid_0-1683894738387.png

 

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26
hypertension = find(diagnosis,'HTN','i') or find(diagnosis,'HT','i')
    or find(diagnosis,'Hypertension','i') or ... 
;
--
Paige Miller

View solution in original post

4 REPLIES 4
PaigeMiller
Diamond | Level 26
hypertension = find(diagnosis,'HTN','i') or find(diagnosis,'HT','i')
    or find(diagnosis,'Hypertension','i') or ... 
;
--
Paige Miller
bayzid
Obsidian | Level 7

Thanks very much.

bayzid
Obsidian | Level 7

How can I generate another variable that contains the specific keyword as below?

bayzid_0-1683924915334.png

 

PaigeMiller
Diamond | Level 26

Why don't you take a try at it yourself? It involves using the FIND function.

--
Paige Miller

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 4 replies
  • 577 views
  • 0 likes
  • 2 in conversation