i have a Healthfacts databse(Hf_f).I need to write a code to select hf_f diagnosis for the key visits.
proc sql;
select Diagnosis
from Hf_f
where Visit='key';
quit;
Not a well worded question!
proc sql;
select Diagnosis
from Hf_f
where Visit='key';
quit;
Not a well worded question!
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
what can i put inplace of dxids.?
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.