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

i have a Healthfacts databse(Hf_f).I need to write a code to select hf_f diagnosis for the key visits.

1 ACCEPTED SOLUTION

Accepted Solutions
Haris
Lapis Lazuli | Level 10
proc sql;
    select Diagnosis
    from Hf_f
    where Visit='key';
quit;

Not a well worded question!

View solution in original post

5 REPLIES 5
Haris
Lapis Lazuli | Level 10
proc sql;
    select Diagnosis
    from Hf_f
    where Visit='key';
quit;

Not a well worded question!

lg2
Calcite | Level 5 lg2
Calcite | Level 5

proc sql;
select
distinct DIAGNOSIS_ID
into
:dxids SEPARATED BY ","
from
HFD17A.HF_D_DIAGNOSIS
where
PUT(STRIP(DIAGNOSIS_CODE),$MYDX.) NE "OTHER"
;

 

if i do this my output was 

dxids

1324

4320

23345

6120

 

Now i wanted the output as

diagnosis description

depression

stress

anxiety

 

How do i modify the above code to get indescpritve way

Haris
Lapis Lazuli | Level 10
Use variable Diagnosis_Description instead of Diagnosis_ID in your SELECT statement.
lg2
Calcite | Level 5 lg2
Calcite | Level 5

what can i put inplace of dxids.?

Haris
Lapis Lazuli | Level 10
I don't know the details of your data or what you're trying to accomplish; i.e., why you are writing the diagnoses into a macro...

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