<?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: Problems with numeric array in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Problems-with-numeric-array/m-p/455287#M284280</link>
    <description>&lt;P&gt;I don't open strange files from people I don't know.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just post text or code.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 18 Apr 2018 16:34:53 GMT</pubDate>
    <dc:creator>HB</dc:creator>
    <dc:date>2018-04-18T16:34:53Z</dc:date>
    <item>
      <title>Problems with numeric array</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problems-with-numeric-array/m-p/455256#M284276</link>
      <description>&lt;P&gt;Hi All thanks for your help with this. I did not originally create this program, but changes have been made to the incoming data that are causing this array to error out. I've tried about everything that I can think which means it's probably the easiest solution. The planname used to be numeric, but it is now alphanumeric, which is causing the error. Is there a way to use the alphanumeric planname?. This isn't the entire code just a small portion of it. Thanks again for your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data&lt;/STRONG&gt; set1 set2;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; array old_hsp_id {&lt;STRONG&gt;999999&lt;/STRONG&gt;} $ &lt;STRONG&gt;1&lt;/STRONG&gt; _temporary_ (&lt;STRONG&gt;999999&lt;/STRONG&gt;*'N');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; set combine&amp;nbsp;&amp;nbsp; (in=a)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;incomingset_1(in=b rename=(start=planname)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where=(put(left(trim(planname)),$unq2_1.) = 'N' and&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put(left(trim(planname)),$opn_1. ) = 'Y'))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;incomingset_2(in=c rename=(start=planname)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where=(put(left(trim(planname)),$opnhspva. ) = 'Y')) end=eof;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; * Check for duplicates ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (old_hsp_id (input(left(trim(planname)),&lt;STRONG&gt;6.&lt;/STRONG&gt;)) = 'N') then old_hsp_id (input(left(trim(planname)),&lt;STRONG&gt;6.&lt;/STRONG&gt;)) = 'Y';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else do;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; error 'Hospital id is duplicated';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put _all_;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Terminate = 'Y';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;end;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 15:38:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problems-with-numeric-array/m-p/455256#M284276</guid>
      <dc:creator>bzimmermann</dc:creator>
      <dc:date>2018-04-18T15:38:58Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with numeric array</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problems-with-numeric-array/m-p/455264#M284277</link>
      <description>&lt;P&gt;Can you post the error and include one line of the data from the log with it?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/49425"&gt;@bzimmermann&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hi All thanks for your help with this. I did not originally create this program, but changes have been made to the incoming data that are causing this array to error out. I've tried about everything that I can think which means it's probably the easiest solution. The planname used to be numeric, but it is now alphanumeric, which is causing the error. Is there a way to use the alphanumeric planname?. This isn't the entire code just a small portion of it. Thanks again for your help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;data&lt;/STRONG&gt; set1 set2;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; array old_hsp_id {&lt;STRONG&gt;999999&lt;/STRONG&gt;} $ &lt;STRONG&gt;1&lt;/STRONG&gt; _temporary_ (&lt;STRONG&gt;999999&lt;/STRONG&gt;*'N');&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; set combine&amp;nbsp;&amp;nbsp; (in=a)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;incomingset_1(in=b rename=(start=planname)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where=(put(left(trim(planname)),$unq2_1.) = 'N' and&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put(left(trim(planname)),$opn_1. ) = 'Y'))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;incomingset_2(in=c rename=(start=planname)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where=(put(left(trim(planname)),$opnhspva. ) = 'Y')) end=eof;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; * Check for duplicates ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (old_hsp_id (input(left(trim(planname)),&lt;STRONG&gt;6.&lt;/STRONG&gt;)) = 'N') then old_hsp_id (input(left(trim(planname)),&lt;STRONG&gt;6.&lt;/STRONG&gt;)) = 'Y';&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else do;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; error 'Hospital id is duplicated';&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put _all_;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Terminate = 'Y';&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;end;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 15:46:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problems-with-numeric-array/m-p/455264#M284277</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-04-18T15:46:13Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with numeric array</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problems-with-numeric-array/m-p/455266#M284278</link>
      <description>&lt;P&gt;"&lt;SPAN&gt;&amp;nbsp;The planname used to be numeric, but it is now alphanumeric, which is causing the error.&amp;nbsp;"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;What error is that?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you had a field you were using as a unique identifier it should have been character to begin with- you aren't going to add or subtract it, it isn't numeric even if it was all numbers.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Maybe you could explain more about what the problem is?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 15:47:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problems-with-numeric-array/m-p/455266#M284278</guid>
      <dc:creator>HB</dc:creator>
      <dc:date>2018-04-18T15:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with numeric array</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problems-with-numeric-array/m-p/455282#M284279</link>
      <description>&lt;P&gt;Here is the piece of the log&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000" face="Calibri" size="3"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 16:26:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problems-with-numeric-array/m-p/455282#M284279</guid>
      <dc:creator>bzimmermann</dc:creator>
      <dc:date>2018-04-18T16:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with numeric array</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problems-with-numeric-array/m-p/455287#M284280</link>
      <description>&lt;P&gt;I don't open strange files from people I don't know.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just post text or code.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 16:34:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problems-with-numeric-array/m-p/455287#M284280</guid>
      <dc:creator>HB</dc:creator>
      <dc:date>2018-04-18T16:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with numeric array</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problems-with-numeric-array/m-p/455288#M284281</link>
      <description>&lt;P&gt;The array is being used to identify duplicates within the planname field. The planname field used to be all numerical but it is now alpha-numeric which appears to be causing the problem. I was hoping to make the existing logic work rather than rewriting the process.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does that give you the additional information you need?&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 16:36:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problems-with-numeric-array/m-p/455288#M284281</guid>
      <dc:creator>bzimmermann</dc:creator>
      <dc:date>2018-04-18T16:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with numeric array</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problems-with-numeric-array/m-p/455289#M284282</link>
      <description>NOTE: Invalid argument to function INPUT at line 203 column 150. ERROR: Array subscript out of range at line 203 column 138. first_rec1=0 first_rec2=1 first_rec3=0 first_rec4=0 first_rec5=0 Terminate=N abort_flag=N abort_count=0 start_Quarter=1Q2017 start_date=01/01/2017 end_Quarter=4Q2017 end_date=12/31/2017 H_NUMB_COMP_RANGE= H_NUMB_COMP= H_RESP_RATE_P= H_COMP_1_SN_P= H_COMP_1_U_P= H_COMP_1_A_P= H_COMP_1_LIN= H_COMP_1_STAR= H_COMP_2_SN_P= H_COMP_2_U_P= H_COMP_2_A_P= H_COMP_2_LIN= H_COMP_2_STAR= H_COMP_3_SN_P= H_COMP_3_U_P= H_COMP_3_A_P= H_COMP_3_LIN= H_COMP_3_STAR= H_COMP_4_SN_P= H_COMP_4_U_P= H_COMP_4_A_P= H_COMP_4_LIN= H_COMP_4_STAR= H_COMP_5_SN_P= H_COMP_5_U_P= H_COMP_5_A_P= H_COMP_5_LIN= H_COMP_5_STAR= H_CLEAN_HSP_SN_P= H_CLEAN_HSP_U_P= H_CLEAN_HSP_A_P= H_CLEAN_HSP_LIN= H_CLEAN_HSP_STAR= H_QUIET_HSP_SN_P= H_QUIET_HSP_U_P= H_QUIET_HSP_A_P= H_QUIET_HSP_LIN= H_QUIET_HSP_STAR= H_COMP_6_Y_P= H_COMP_6_N_P= H_COMP_6_LIN= H_COMP_6_STAR= H_HSP_RATING_0_6= H_HSP_RATING_7_8= H_HSP_RATING_9_10= H_HSP_RATING_LIN= H_HSP_RATING_STAR= H_RECMND_DN= H_RECMND_PY= H_RECMND_DY= H_RECMND_LIN= H_RECMND_STAR= H_COMP_7_SD_P= H_COMP_7_A_P= H_COMP_7_SA_P= H_COMP_7_LIN= H_COMP_7_STAR= H_STAR_RATING= H_NUMB_COMP_F= M_ID_01=Composite 1 M_ID_02=Composite 2 M_ID_03=Composite 3 M_ID_04=Composite 4 M_ID_05=Composite 5 M_ID_06=Composite 6 M_ID_07=Composite 7 M_ID_08=Q8 M_ID_09=Q9 M_ID_10=Q 21 M_ID_11=Q 22 M_ID_12=Star Rating M_ID_desc_01=Communication with nurses M_ID_desc_02=Communication with doctors M_ID_desc_03=Responsiveness of hospital staff M_ID_desc_04=Pain management M_ID_desc_05=Communication about medicines M_ID_desc_06=Discharge information M_ID_desc_07=Care Transition M_ID_desc_08=Cleanliness of hospital environment M_ID_desc_09=Quietness of hospital environment M_ID_desc_10=Overall rating of hospital M_ID_desc_11=Willingness to recommend this hospital M_ID_desc_12=HCAHPS Summary Star Rating foot_c= a=1 b=0 eof=0 c=0 planname=01014F months_data=12 surveys=1134 eligibles=4672 ineligibles=25 completes=325 state_code=AL nur_bout_avg=7 nur_mid_avg=24 nur_tout_avg=69 nur_lout_avg=87 doc_bout_avg=4 doc_mid_avg=16 doc_tout_avg=80 doc_lout_avg=92 res_bout_avg=13 res_mid_avg=27 res_tout_avg=60 res_lout_avg=81 pai_bout_avg=17 pai_mid_avg=35 pai_tout_avg=48 pai_lout_avg=76 com_bout_avg=20 com_mid_avg=19 com_tout_avg=61 com_lout_avg=76 dis_bout_avg=21 dis_tout_avg=79 dis_lout_avg=79 cle_bout_avg=14 cle_mid_avg=26 cle_tout_avg=60 cle_lout_avg=81 qui_bout_avg=9 qui_mid_avg=32 qui_tout_avg=59 qui_lout_avg=82 ovr_bout_avg=9 ovr_mid_avg=27 ovr_tout_avg=64 ovr_lout_avg=87 rec_bout_avg=8 rec_mid_avg=26 rec_tout_avg=66 rec_lout_avg=86 ctm_bout_avg=5 ctm_mid_avg=47 ctm_tout_avg=48 ctm_lout_avg=81 nur_star=1 doc_star=3 res_star=2 pai_star=1 com_star=3 cle_star=1 qui_star=3 dis_star=1 ovr_star=3 rec_star=3 ctm_star=3 env_star=2 global_star=3 summary_star=2 fmtname= label= i=. foot_10=. foot_15=. foot_6=. foot_3a=. foot_3b=. foot_3=. foot_5a=. foot_5c=. foot_DR=. foot_5=. foot_1a=. foot_1b=. foot_1=. foot_11a=. foot_11b=. foot_HW=. foot_RR=. foot_1c=. foot_11z=. resp_perc=. SEQN=. PROVIDER_ID= H_FOOTNOTE= S_FOOTNOTE= err_count=0 no_avg=. foot_5b= j=. k=. x= Blank= Resp_rate= aa= bb= cc= dd= ee= _ERROR_=1 _N_=78</description>
      <pubDate>Wed, 18 Apr 2018 16:37:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problems-with-numeric-array/m-p/455289#M284282</guid>
      <dc:creator>bzimmermann</dc:creator>
      <dc:date>2018-04-18T16:37:18Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with numeric array</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problems-with-numeric-array/m-p/455291#M284283</link>
      <description>&lt;P&gt;You have two errors:&lt;/P&gt;
&lt;DIV class="lia-message-heading lia-component-message-header"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV id="messagebodydisplay_0_5" class="lia-message-body lia-component-body"&gt;
&lt;DIV class="lia-message-body-content"&gt;&lt;STRONG&gt;NOTE: Invalid argument to function INPUT at line 203 column 150. &lt;/STRONG&gt;&lt;/DIV&gt;
&lt;DIV class="lia-message-body-content"&gt;&lt;STRONG&gt;ERROR: Array subscript out of range at line 203 column 138.&amp;nbsp;&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;DIV class="lia-message-body-content"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="lia-message-body-content"&gt;&lt;SPAN&gt;What is the code from line 203 IN YOUR LOG?&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="lia-message-body-content"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="lia-message-body-content"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 18 Apr 2018 16:42:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problems-with-numeric-array/m-p/455291#M284283</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-04-18T16:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with numeric array</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problems-with-numeric-array/m-p/455303#M284284</link>
      <description>The weird thing it's just a let statement 202 %let mac_path = &amp;amp;Root.SAS_Code\Macro_lib\base\; 203 %let Reports = &amp;amp;Root.Data_From_Unix_for_Reports\&amp;amp;year._&amp;amp;qtr_no.\; 204 %let Raw = &amp;amp;Root.Quarterly\1_Download\&amp;amp;year._&amp;amp;qtr_no.\Raw_data; 205 %let Srce = &amp;amp;Root.Quarterly\1_Download\&amp;amp;year._&amp;amp;qtr_no.\Source;</description>
      <pubDate>Wed, 18 Apr 2018 17:13:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problems-with-numeric-array/m-p/455303#M284284</guid>
      <dc:creator>bzimmermann</dc:creator>
      <dc:date>2018-04-18T17:13:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with numeric array</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problems-with-numeric-array/m-p/455327#M284285</link>
      <description>&lt;P&gt;Then it's probably above those lines, the error isn't always exactly at the line indicated, but where it causes issues.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 17:41:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problems-with-numeric-array/m-p/455327#M284285</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-04-18T17:41:29Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with numeric array</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Problems-with-numeric-array/m-p/455361#M284286</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/49425"&gt;@bzimmermann&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;The array is being used to identify duplicates within the planname field. The planname field used to be all numerical but it is now alpha-numeric which appears to be causing the problem. I was hoping to make the existing logic work rather than rewriting the process.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does that give you the additional information you need?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Looks like your old code was making a giant temporary array to check for duplicates.&lt;/P&gt;
&lt;P&gt;You probably will want to switch to using a HASH instead.&lt;/P&gt;
&lt;P&gt;Or just sort the data and check for duplicates that way.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 19:05:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Problems-with-numeric-array/m-p/455361#M284286</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2018-04-18T19:05:27Z</dc:date>
    </item>
  </channel>
</rss>

