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...

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 5 replies
  • 1543 views
  • 0 likes
  • 2 in conversation