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