<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Problem finding ICD-10 codes using arrays in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Problem-finding-ICD-10-codes-using-arrays/m-p/950874#M371794</link>
    <description>&lt;P&gt;Most of the time a long data structure beats a wide one. Below not exactly what you asked for but just some sample code to illustrate what I'm talking about.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
  input ID $ dx1 $ dx2 $ Depression_indicator Anxiety_indicator;
  datalines;
2 F0631 F064 1 0
3 F064 F067 0 -1
4 f064 F0631 0 1
1 F0631 F064 1 0
;
run;

proc format;
  value $icd_groups
    'F0631' ='Depression'
    'F064'  ='Anxiety'
    other   ='unknown'
    ;
run;

proc transpose data=have out=long(rename=(_name_=dx col1=icd));
  by id notsorted;
  var dx:;
run;

data want;
  set long;
  icd_group=put(icd,$icd_groups.);
run;

proc print data=want;
run;

proc report data=long;
  columns id icd, dx;
  define id / group;
  define dx / across;
  define icd / group;
  format icd $icd_groups.;
  label dx=' ';
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Patrick_0-1731630956248.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/102234i304DA39DEEC25FE1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Patrick_0-1731630956248.png" alt="Patrick_0-1731630956248.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 15 Nov 2024 00:36:04 GMT</pubDate>
    <dc:creator>Patrick</dc:creator>
    <dc:date>2024-11-15T00:36:04Z</dc:date>
    <item>
      <title>Problem finding ICD-10 codes using arrays</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-finding-ICD-10-codes-using-arrays/m-p/950801#M371765</link>
      <description>&lt;P&gt;&amp;nbsp;Hello, I have a question I'm not sure how to do this on SAS,&amp;nbsp; I want to find instances of ICD-10, medical codes in the the variables DGNS_1_CD-DGNS_25_CD;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I made the following arrays, not exhaustive. I want to acomplish three things, 1. I want to create indicator variables for each disease, so a depression_indicator, nonalzhimers_indicator, etc, I want to make sure the codes for the other diseaseas are assigned 0, so in the depression_indicator codes for nonalzhimers, alzhimers and pneimonia will be 0 and I want to assign -1 to codes that I don't know, there might be codes for diseases that are not listed in the. I was trying to use the following code, any ideas would be helpful&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;array DGNS $ DGNS_1_CD -- DGNS_25_CD;&lt;BR /&gt;DEPRESSION_MEDPAR = .;&lt;BR /&gt;NONALZH_DEMEN_MEDPAR = .;&lt;BR /&gt;ALZH_MEDPAR = .;&lt;BR /&gt;PNEUMO_MEDPAR = .;&lt;BR /&gt;hf_medpar = .;&lt;/P&gt;&lt;P&gt;array depression_codes[50] $8 _temporary_&amp;nbsp;&lt;/P&gt;&lt;P&gt;array nonalzhimers_codes[84] $8 _temporary_&amp;nbsp;&lt;/P&gt;&lt;P&gt;array alzhimers_codes[4] $8 _temporary_&amp;nbsp;&lt;/P&gt;&lt;P&gt;array pneumonia_codes[93] $8 _temporary_(&amp;nbsp;&lt;/P&gt;&lt;P&gt;do i = 1 to dim(DGNS);&lt;BR /&gt;if strip(DGNS[i]) in depression_codes then DEPRESSION_MEDPAR=1;&lt;BR /&gt;* this would find the other codes and set equal to 0;&lt;/P&gt;&lt;P&gt;if (strip(DGNS[i]) in nonalzhimers_codes or strip(DGNS[i]) in pneumonia_codes or strip(DGNS[i]) in hf_codes&lt;BR /&gt;or strip(DGNS[i]) in prknsn_codes or strip(DGNS[i]) in stroke_codes&lt;BR /&gt;or strip(DGNS[i]) in stroke_exclusion_codes or strip(DGNS[i]) in anxiety_codes&lt;BR /&gt;or strip(DGNS[i]) in bipolar_codes or strip(DGNS[i]) in TBI_codes&lt;BR /&gt;or strip(DGNS[i]) in DRUG_USE_CODES or strip(DGNS[i]) in PSYCH_CODES&lt;BR /&gt;or strip(DGNS[i]) in OUD_CODES) then DEPRESSION_MEDPAR = 0;*/&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2024 16:25:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-finding-ICD-10-codes-using-arrays/m-p/950801#M371765</guid>
      <dc:creator>LuisMijares</dc:creator>
      <dc:date>2024-11-14T16:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: Problem finding ICD-10 codes using arrays</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-finding-ICD-10-codes-using-arrays/m-p/950809#M371769</link>
      <description>&lt;P&gt;I do not understand what you want.&amp;nbsp; It kind of sounds like you want something impossible though.&amp;nbsp; It sounds like you want allow only one of the disease indicators to be true for a patient.&amp;nbsp; &amp;nbsp;But it is not unreasonable for a single patient to have ICD codes indicating multiple different diseases.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you have some reason for wanting presence of depression to hide the fact that they also had a stroke?&amp;nbsp; Perhaps you have some ranking of conditions and you only want the most serious?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2024 17:10:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-finding-ICD-10-codes-using-arrays/m-p/950809#M371769</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2024-11-14T17:10:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problem finding ICD-10 codes using arrays</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-finding-ICD-10-codes-using-arrays/m-p/950812#M371771</link>
      <description>&lt;P&gt;for example, for the indicator variable Depression_indicator I want it to equal 1 if there is a code for depression, the codes are in the arrays above, furthermore, I want it to equal 0 for cases when there are codes of other illnessses, so if there is a code for Alzhimers I want the Depression_indicator to equal 0,&amp;nbsp; and the oppsoite for the Alzhimers indicator, I need the Alzhimers indicator to equal 1 if there are Alzhimers codes and 0 if there are depression codes.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2024 17:16:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-finding-ICD-10-codes-using-arrays/m-p/950812#M371771</guid>
      <dc:creator>LuisMijares</dc:creator>
      <dc:date>2024-11-14T17:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: Problem finding ICD-10 codes using arrays</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-finding-ICD-10-codes-using-arrays/m-p/950851#M371787</link>
      <description>&lt;P&gt;Forget the arrays for now.&amp;nbsp; Assume you have already checked and this particular observations has some DX codes that indicate DEPRESSION and some DX codes that indicate ANXIETY.&amp;nbsp; How do you want that result coded? Do you want DEPRESSION=1 and ANXIETY=0 or do you want DPRESSION=0 and ANXIETY=1?&amp;nbsp; Why?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2024 20:34:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-finding-ICD-10-codes-using-arrays/m-p/950851#M371787</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2024-11-14T20:34:37Z</dc:date>
    </item>
    <item>
      <title>Re: Problem finding ICD-10 codes using arrays</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-finding-ICD-10-codes-using-arrays/m-p/950854#M371788</link>
      <description>&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;ID&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;dx1&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;dx2&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;Depression_indicator&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;Anxiety indicator&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;F0631&lt;/TD&gt;&lt;TD&gt;F064&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;F0631&lt;/TD&gt;&lt;TD&gt;F064&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;F064&lt;/TD&gt;&lt;TD&gt;F067&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;-1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;f064&lt;/TD&gt;&lt;TD&gt;F0631&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;let's assume that the F0631 is a code for depression, FO64 is a code for anxiety and F067 is a unknown code, we don't know if it's depression or anxiety, I want the variables Depression_indicator and Anxiety_Indicator to look like the above.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2024 20:49:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-finding-ICD-10-codes-using-arrays/m-p/950854#M371788</guid>
      <dc:creator>LuisMijares</dc:creator>
      <dc:date>2024-11-14T20:49:02Z</dc:date>
    </item>
    <item>
      <title>Re: Problem finding ICD-10 codes using arrays</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-finding-ICD-10-codes-using-arrays/m-p/950859#M371789</link>
      <description>&lt;P&gt;Sounds like you are trying to classify "reason for hospitalization" (in the US, more realistically, the justification for the bill) based on the primary diagnosis (dx1)?&amp;nbsp; But you only want to make that determination if you can classify all the &lt;EM&gt;other&lt;/EM&gt; codes into one of those bins (as you've defined them in the arrays) and otherwise basically indicate a possible diagnosis with a -1?&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2024 21:13:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-finding-ICD-10-codes-using-arrays/m-p/950859#M371789</guid>
      <dc:creator>quickbluefish</dc:creator>
      <dc:date>2024-11-14T21:13:03Z</dc:date>
    </item>
    <item>
      <title>Re: Problem finding ICD-10 codes using arrays</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-finding-ICD-10-codes-using-arrays/m-p/950860#M371790</link>
      <description>&lt;P&gt;yes, currently I have written this code, if you have any advice on how to fix it or implement what I need that would be appreciated&amp;nbsp;&lt;/P&gt;&lt;P&gt;data have&amp;nbsp;&lt;/P&gt;&lt;P&gt;set have&amp;nbsp;&lt;/P&gt;&lt;P&gt;array DGNS $ DGNS_1_CD -- DGNS_25_CD;&lt;/P&gt;&lt;P&gt;DEPRESSION_MEDPAR = .;&lt;BR /&gt;do i = 1 to dim(DGNS);&lt;BR /&gt;if strip(DGNS[i]) in depression_codes then DEPRESSION_MEDPAR=1;&lt;BR /&gt;* this would find the other codes and set equal to 0;&lt;/P&gt;&lt;P&gt;if (strip(DGNS[i]) in nonalzhimers_codes or strip(DGNS[i]) in pneumonia_codes or strip(DGNS[i]) in hf_codes&lt;BR /&gt;or strip(DGNS[i]) in prknsn_codes or strip(DGNS[i]) in stroke_codes&lt;BR /&gt;or strip(DGNS[i]) in stroke_exclusion_codes or strip(DGNS[i]) in anxiety_codes&lt;BR /&gt;or strip(DGNS[i]) in bipolar_codes or strip(DGNS[i]) in TBI_codes&lt;BR /&gt;or strip(DGNS[i]) in DRUG_USE_CODES or strip(DGNS[i]) in PSYCH_CODES&lt;BR /&gt;or strip(DGNS[i]) in OUD_CODES) then DEPRESSION_MEDPAR = 0;*/&lt;BR /&gt;if missing(DGNS[i]) then DEPRESSION_MEDPAR = -9;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2024 21:43:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-finding-ICD-10-codes-using-arrays/m-p/950860#M371790</guid>
      <dc:creator>LuisMijares</dc:creator>
      <dc:date>2024-11-14T21:43:25Z</dc:date>
    </item>
    <item>
      <title>Re: Problem finding ICD-10 codes using arrays</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-finding-ICD-10-codes-using-arrays/m-p/950874#M371794</link>
      <description>&lt;P&gt;Most of the time a long data structure beats a wide one. Below not exactly what you asked for but just some sample code to illustrate what I'm talking about.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
  input ID $ dx1 $ dx2 $ Depression_indicator Anxiety_indicator;
  datalines;
2 F0631 F064 1 0
3 F064 F067 0 -1
4 f064 F0631 0 1
1 F0631 F064 1 0
;
run;

proc format;
  value $icd_groups
    'F0631' ='Depression'
    'F064'  ='Anxiety'
    other   ='unknown'
    ;
run;

proc transpose data=have out=long(rename=(_name_=dx col1=icd));
  by id notsorted;
  var dx:;
run;

data want;
  set long;
  icd_group=put(icd,$icd_groups.);
run;

proc print data=want;
run;

proc report data=long;
  columns id icd, dx;
  define id / group;
  define dx / across;
  define icd / group;
  format icd $icd_groups.;
  label dx=' ';
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Patrick_0-1731630956248.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/102234i304DA39DEEC25FE1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Patrick_0-1731630956248.png" alt="Patrick_0-1731630956248.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 00:36:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-finding-ICD-10-codes-using-arrays/m-p/950874#M371794</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2024-11-15T00:36:04Z</dc:date>
    </item>
    <item>
      <title>Re: Problem finding ICD-10 codes using arrays</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-finding-ICD-10-codes-using-arrays/m-p/950890#M371796</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/423175"&gt;@LuisMijares&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;ID&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;dx1&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;dx2&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;Depression_indicator&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;Anxiety indicator&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;1&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;F0631&lt;/TD&gt;
&lt;TD&gt;F064&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;1&lt;/TD&gt;
&lt;TD&gt;0&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;2&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;F0631&lt;/TD&gt;
&lt;TD&gt;F064&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;1&lt;/TD&gt;
&lt;TD&gt;0&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;3&lt;/TD&gt;
&lt;TD&gt;F064&lt;/TD&gt;
&lt;TD&gt;F067&lt;/TD&gt;
&lt;TD&gt;0&lt;/TD&gt;
&lt;TD&gt;-1&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;4&lt;/TD&gt;
&lt;TD&gt;f064&lt;/TD&gt;
&lt;TD&gt;F0631&lt;/TD&gt;
&lt;TD&gt;0&lt;/TD&gt;
&lt;TD&gt;1&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;let's assume that the F0631 is a code for depression, FO64 is a code for anxiety and F067 is a unknown code, we don't know if it's depression or anxiety, I want the variables Depression_indicator and Anxiety_Indicator to look like the above.&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Is the understanding below correct?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When DX1 is a known code, the corresponding dummy variable is either 1 or -1&amp;nbsp; (all other dummies are zero).&amp;nbsp; The dummy is 1 when DX2 is some other known code and is a -1 if DX2 is unknown.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Question: what if DX1 is an unknown code, and DX2 is a known code?&lt;/P&gt;
&lt;P&gt;And what if both DX1 and DX2 are unknown codes?&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 01:03:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-finding-ICD-10-codes-using-arrays/m-p/950890#M371796</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2024-11-15T01:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: Problem finding ICD-10 codes using arrays</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problem-finding-ICD-10-codes-using-arrays/m-p/950905#M371798</link>
      <description>&lt;P&gt;I think you need to re-think the way you approach this - data structures like MedPAR always present this kind of annoyance.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would first start by getting rid of the temporary arrays (the ones that hold all the codes) and instead put them all in a single format.&amp;nbsp; The left side of the format is the dx code, and the right side is the condition, i.e.,&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
value $fdxlab
&amp;nbsp; 'F062',&amp;nbsp;
&amp;nbsp; 'F0823',&amp;nbsp;
&amp;nbsp; 'F0671' = 'DEPR'
&amp;nbsp; 'X089',
&amp;nbsp; 'X211' = 'ANX'
&amp;nbsp; &amp;nbsp;....
other='UNKNOWN'
&amp;nbsp; &amp;nbsp;;
run;
* now another format that just assigns a sequential number to each of the unique conditions - you can make these formats programmatically - I'm just typing them out manually ;

proc format;
value $fcondnum
  'UNKNOWN'=1
  'DEPR'=2
  'ANX'=3
  'ALZ'=4
  'CHF'=5
   ... ;
;
run;
** now with your medpar data, create new dummy variables for each of those conditions -- same order as above - again, ideally, don't do this manually ;
data mp;
set mp;
length dx_UNKNOWN dx_DEPR dx_ANX dx_ALZ dx_CHF 3;
array dx {*} dx_:;  * your new dummy variables ;
array dg {*} dgns_1_cd -- dgns_25_cd;  * your existing diagnosis codes ;
** now classify each of the 25 diagnosis codes for this hospitalization ;
do i=1 to dim(dx);
    dx[i]=0;
end;
do i=1 to dim(dg);
    dx[put(put(dg[i],$fdxlab.),$fcondnum.)*1]=1;
end;
drop i;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I think that will get you pretty close to what you're looking for.&amp;nbsp; If you really care about what's in the primary position (DGNS_1_CD), then you'd need to add a step for that that specifically classifies that variable, but that would be simple.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 01:44:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problem-finding-ICD-10-codes-using-arrays/m-p/950905#M371798</guid>
      <dc:creator>quickbluefish</dc:creator>
      <dc:date>2024-11-15T01:44:31Z</dc:date>
    </item>
  </channel>
</rss>

