BookmarkSubscribeRSS Feed
lg2
Calcite | Level 5 lg2
Calcite | Level 5

I have database with diagnosis description.(example like mood disorders,sleep disorders..)I want to find the diagnosis id with that description.How to create a program for that?

3 REPLIES 3
Community_Guide
SAS Moderator

Hello @lg2,


Your question requires more details before experts can help. Can you revise your question to include more information? 

 

Review this checklist:

  • Specify a meaningful subject line for your topic.  Avoid generic subjects like "need help," "SAS query," or "urgent."
  • When appropriate, provide sample data in text or DATA step format.  See this article for one method you can use.
  • If you're encountering an error in SAS, include the SAS log or a screenshot of the error condition. Use the Photos button to include the image in your message.
    use_buttons.png
  • It also helps to include an example (table or picture) of the result that you're trying to achieve.

To edit your original message, select the "blue gear" icon at the top of the message and select Edit Message.  From there you can adjust the title and add more details to the body of the message.  Or, simply reply to this message with any additional information you can supply.

 

edit_post.png

SAS experts are eager to help -- help them by providing as much detail as you can.

 

This prewritten response was triggered for you by fellow SAS Support Communities member @Reeza

.
SuryaKiran
Meteorite | Level 14

You need to provide some more information on what data you have.

If you have a table with diagnosis and another table with there codes then a simple left join works. 

data D_id;
infile datalines dlm=',' missover;
input id diagnosis $25.;
datalines;
101,mood disorders
102,sleep disorders
;
run;

data have;
infile datalines dlm=',' missover;
input patient diagnosis $25.;
datalines ;
1,mood disorders
2,mood disorders
3,sleep disorders
4,sleep disorders
;
run;


proc sql;
create table want as 
select a.*,b.id
from have a
left join d_id b on a.diagnosis=b.diagnosis
;
quit;

 

Thanks,
Suryakiran
Cynthia_sas
SAS Super FREQ

Hi:

  And, another approach is to use a FORMAT for a table lookup. In the example below, the PROC FORMAT was hardcoded, but you can build the format from a SAS dataset, too.

alternate_lookup_format.png

 

In this example, the value of the DIAGCODE variable will come from the $dgcode user defined format. This is another way to do a table lookup without doing a merge or a join.

 

Cynthia

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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
  • 3 replies
  • 368 views
  • 0 likes
  • 4 in conversation