<?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 Need help Use an array to find the minimum value excluding 0 in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Need-help-Use-an-array-to-find-the-minimum-value-excluding-0/m-p/691519#M210485</link>
    <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I Need help&lt;/P&gt;&lt;DIV class="result-shield-container tlid-copy-target"&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN&gt;Use an array to find the minimum value excluding 0&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="result-shield-container tlid-copy-target"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;This is my code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Data exam;&lt;/P&gt;&lt;P&gt;input x1 x2 x3 x4 x5 x6;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;0 0 0 0 0 0&lt;/P&gt;&lt;P&gt;0 0 0 0 0 0&lt;/P&gt;&lt;P&gt;0 1&amp;nbsp;2&amp;nbsp;4&amp;nbsp;6 7&lt;/P&gt;&lt;P&gt;0 0&amp;nbsp;2&amp;nbsp;1&amp;nbsp;4 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data exam1;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366ff"&gt;set&lt;/FONT&gt; exam;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366ff"&gt;array&lt;/FONT&gt; xall{6} x1 x2 x3 x4 x5 x6;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366ff"&gt;array&lt;/FONT&gt; temp[6] (0 0 0 0 0 0);&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366ff"&gt;Do&lt;/FONT&gt; i = 1 &lt;FONT color="#3366ff"&gt;to&lt;/FONT&gt; dim(xall);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;FONT color="#3366ff"&gt; IF&lt;/FONT&gt; i = 1 and xall{i}=.&lt;FONT color="#3366ff"&gt; then&lt;/FONT&gt; temp{i} = 9999 ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;FONT color="#3366ff"&gt;else if&lt;/FONT&gt; i=1 and xall{i}= 0 &lt;FONT color="#3366ff"&gt;then&lt;/FONT&gt; temp{i} = 8888 ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;FONT color="#3366ff"&gt;else if&amp;nbsp;&lt;/FONT&gt;i=1 and xall{i} &amp;gt;0&lt;FONT color="#3366ff"&gt; then&lt;/FONT&gt;&amp;nbsp;temp{i} = xall[i] ;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366ff"&gt;&amp;nbsp;IF&lt;/FONT&gt; i &amp;gt;1 and (temp{i-1}=. and xall{i}=.)&lt;FONT color="#3366ff"&gt; then&lt;/FONT&gt; temp{i} = 9999 ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;&lt;FONT color="#3366ff"&gt;else if&amp;nbsp;&lt;/FONT&gt; i &amp;gt;1 and (temp{i-1}=0 and xall{i}=0) &lt;FONT color="#3366ff"&gt;then&lt;/FONT&gt; temp{i} = 8888 ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;FONT color="#3366ff"&gt;else if&lt;/FONT&gt; i &amp;gt;1 &amp;nbsp;and (temp{i-1}&amp;gt;0 and xall{i}&amp;gt;0) &lt;FONT color="#3366ff"&gt;then&lt;/FONT&gt; temp{i} = min(temp{i-1},xall{i});&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366ff"&gt;end;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366ff"&gt;run;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="result-shield-container tlid-copy-target"&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN&gt;I think the correct answer is&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="result-shield-container tlid-copy-target"&gt;&lt;SPAN class="tlid-translation translation"&gt;x1 x2 x3 x4 x5 x6 temp1 temp2 temp3 temp4 temp5 temp6&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;0&amp;nbsp;&amp;nbsp; 0&amp;nbsp; &amp;nbsp;0&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;0&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;8888&amp;nbsp;&amp;nbsp; 8888&amp;nbsp;&amp;nbsp;&amp;nbsp; 8888&amp;nbsp;&amp;nbsp; 8888&amp;nbsp;&amp;nbsp; 8888&amp;nbsp;&amp;nbsp; 8888&lt;/P&gt;&lt;P&gt;0&amp;nbsp;&amp;nbsp; 0&amp;nbsp; &amp;nbsp;0&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;0&amp;nbsp;&amp;nbsp; 0 &amp;nbsp;8888&amp;nbsp;&amp;nbsp; 8888&amp;nbsp;&amp;nbsp;&amp;nbsp; 8888&amp;nbsp;&amp;nbsp; 8888&amp;nbsp;&amp;nbsp; 8888&amp;nbsp;&amp;nbsp; 8888&lt;/P&gt;&lt;P&gt;0&amp;nbsp;&amp;nbsp; 1&amp;nbsp; &amp;nbsp;2&amp;nbsp;&amp;nbsp; 4&amp;nbsp;&amp;nbsp; 6&amp;nbsp;&amp;nbsp; 7 &amp;nbsp;8888&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;0&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp; 2&amp;nbsp; &amp;nbsp;1&amp;nbsp; &amp;nbsp;4&amp;nbsp; &amp;nbsp;1&amp;nbsp; 8888&amp;nbsp;&amp;nbsp;&amp;nbsp;8888&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 14 Oct 2020 13:19:52 GMT</pubDate>
    <dc:creator>scad</dc:creator>
    <dc:date>2020-10-14T13:19:52Z</dc:date>
    <item>
      <title>Need help Use an array to find the minimum value excluding 0</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-Use-an-array-to-find-the-minimum-value-excluding-0/m-p/691519#M210485</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I Need help&lt;/P&gt;&lt;DIV class="result-shield-container tlid-copy-target"&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN&gt;Use an array to find the minimum value excluding 0&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="result-shield-container tlid-copy-target"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;This is my code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Data exam;&lt;/P&gt;&lt;P&gt;input x1 x2 x3 x4 x5 x6;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;0 0 0 0 0 0&lt;/P&gt;&lt;P&gt;0 0 0 0 0 0&lt;/P&gt;&lt;P&gt;0 1&amp;nbsp;2&amp;nbsp;4&amp;nbsp;6 7&lt;/P&gt;&lt;P&gt;0 0&amp;nbsp;2&amp;nbsp;1&amp;nbsp;4 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data exam1;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366ff"&gt;set&lt;/FONT&gt; exam;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366ff"&gt;array&lt;/FONT&gt; xall{6} x1 x2 x3 x4 x5 x6;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366ff"&gt;array&lt;/FONT&gt; temp[6] (0 0 0 0 0 0);&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366ff"&gt;Do&lt;/FONT&gt; i = 1 &lt;FONT color="#3366ff"&gt;to&lt;/FONT&gt; dim(xall);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;FONT color="#3366ff"&gt; IF&lt;/FONT&gt; i = 1 and xall{i}=.&lt;FONT color="#3366ff"&gt; then&lt;/FONT&gt; temp{i} = 9999 ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;FONT color="#3366ff"&gt;else if&lt;/FONT&gt; i=1 and xall{i}= 0 &lt;FONT color="#3366ff"&gt;then&lt;/FONT&gt; temp{i} = 8888 ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;FONT color="#3366ff"&gt;else if&amp;nbsp;&lt;/FONT&gt;i=1 and xall{i} &amp;gt;0&lt;FONT color="#3366ff"&gt; then&lt;/FONT&gt;&amp;nbsp;temp{i} = xall[i] ;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366ff"&gt;&amp;nbsp;IF&lt;/FONT&gt; i &amp;gt;1 and (temp{i-1}=. and xall{i}=.)&lt;FONT color="#3366ff"&gt; then&lt;/FONT&gt; temp{i} = 9999 ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;&lt;FONT color="#3366ff"&gt;else if&amp;nbsp;&lt;/FONT&gt; i &amp;gt;1 and (temp{i-1}=0 and xall{i}=0) &lt;FONT color="#3366ff"&gt;then&lt;/FONT&gt; temp{i} = 8888 ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;FONT color="#3366ff"&gt;else if&lt;/FONT&gt; i &amp;gt;1 &amp;nbsp;and (temp{i-1}&amp;gt;0 and xall{i}&amp;gt;0) &lt;FONT color="#3366ff"&gt;then&lt;/FONT&gt; temp{i} = min(temp{i-1},xall{i});&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366ff"&gt;end;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366ff"&gt;run;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="result-shield-container tlid-copy-target"&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN&gt;I think the correct answer is&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="result-shield-container tlid-copy-target"&gt;&lt;SPAN class="tlid-translation translation"&gt;x1 x2 x3 x4 x5 x6 temp1 temp2 temp3 temp4 temp5 temp6&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;0&amp;nbsp;&amp;nbsp; 0&amp;nbsp; &amp;nbsp;0&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;0&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;8888&amp;nbsp;&amp;nbsp; 8888&amp;nbsp;&amp;nbsp;&amp;nbsp; 8888&amp;nbsp;&amp;nbsp; 8888&amp;nbsp;&amp;nbsp; 8888&amp;nbsp;&amp;nbsp; 8888&lt;/P&gt;&lt;P&gt;0&amp;nbsp;&amp;nbsp; 0&amp;nbsp; &amp;nbsp;0&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;0&amp;nbsp;&amp;nbsp; 0 &amp;nbsp;8888&amp;nbsp;&amp;nbsp; 8888&amp;nbsp;&amp;nbsp;&amp;nbsp; 8888&amp;nbsp;&amp;nbsp; 8888&amp;nbsp;&amp;nbsp; 8888&amp;nbsp;&amp;nbsp; 8888&lt;/P&gt;&lt;P&gt;0&amp;nbsp;&amp;nbsp; 1&amp;nbsp; &amp;nbsp;2&amp;nbsp;&amp;nbsp; 4&amp;nbsp;&amp;nbsp; 6&amp;nbsp;&amp;nbsp; 7 &amp;nbsp;8888&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;0&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp; 2&amp;nbsp; &amp;nbsp;1&amp;nbsp; &amp;nbsp;4&amp;nbsp; &amp;nbsp;1&amp;nbsp; 8888&amp;nbsp;&amp;nbsp;&amp;nbsp;8888&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Oct 2020 13:19:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-Use-an-array-to-find-the-minimum-value-excluding-0/m-p/691519#M210485</guid>
      <dc:creator>scad</dc:creator>
      <dc:date>2020-10-14T13:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: Need help Use an array to find the minimum value excluding 0</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-Use-an-array-to-find-the-minimum-value-excluding-0/m-p/691523#M210487</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data exam;

input x1 x2 x3 x4 x5 x6;

cards;

0 0 0 0 0 0

0 0 0 0 0 0

0 1 2 4 6 7

0 0 2 1 4 1
;

data want;
 set exam;
 array t x1-x6;
 array j(6);
 do over t;
  if t then j(_i_)=t;
 end;
 if n(of j(*)) then min=min(of j(*));
 else min=0;
 drop j:;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 14 Oct 2020 13:35:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-Use-an-array-to-find-the-minimum-value-excluding-0/m-p/691523#M210487</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2020-10-14T13:35:46Z</dc:date>
    </item>
    <item>
      <title>Re: Need help Use an array to find the minimum value excluding 0</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-Use-an-array-to-find-the-minimum-value-excluding-0/m-p/691525#M210489</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data exam;

input x1 x2 x3 x4 x5 x6;

cards;

0 0 0 0 0 0

0 0 0 0 0 0

0 1 2 4 6 7

0 0 2 1 4 1
;
data want;
 set exam;
 array t x1-x6;
 do over t;
  if t then min=min(t,min);
 end;
 if min=. then min=0;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 14 Oct 2020 13:39:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-Use-an-array-to-find-the-minimum-value-excluding-0/m-p/691525#M210489</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2020-10-14T13:39:33Z</dc:date>
    </item>
    <item>
      <title>Re: Need help Use an array to find the minimum value excluding 0</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-Use-an-array-to-find-the-minimum-value-excluding-0/m-p/691558#M210500</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data exam;
	input x1 x2 x3 x4 x5 x6;
	cards;
0 0 0 0 0 0
0 0 0 0 0 0
0 1 2 4 6 7
0 0 2 1 4 1
;
run;

data exam1;
	set exam;
	array xall{6} x1 x2 x3 x4 x5 x6;
	array temp[6] $;
	min=8888;
	*calculate min;
	Do i=1 to dim(xall);
		if xall(i) &amp;gt; 0 then do;
			if min&amp;gt;xall{i} then min=min(min,xall(i));
		end;
	end;
	*feed minimum value to every variable;
	Do i=1 to dim(temp);
		temp(i)=ifn(min(min,xall(i))=0,8888,min(min,xall(i)));
	end;
	drop i;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 14 Oct 2020 14:54:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-Use-an-array-to-find-the-minimum-value-excluding-0/m-p/691558#M210500</guid>
      <dc:creator>hhinohar</dc:creator>
      <dc:date>2020-10-14T14:54:26Z</dc:date>
    </item>
    <item>
      <title>Re: Need help Use an array to find the minimum value excluding 0</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-Use-an-array-to-find-the-minimum-value-excluding-0/m-p/691567#M210508</link>
      <description>&lt;P&gt;Does your data have any negative values?&lt;/P&gt;</description>
      <pubDate>Wed, 14 Oct 2020 15:33:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-Use-an-array-to-find-the-minimum-value-excluding-0/m-p/691567#M210508</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-10-14T15:33:36Z</dc:date>
    </item>
    <item>
      <title>Re: Need help Use an array to find the minimum value excluding 0</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-Use-an-array-to-find-the-minimum-value-excluding-0/m-p/691707#M210573</link>
      <description>Only positive</description>
      <pubDate>Thu, 15 Oct 2020 00:16:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-Use-an-array-to-find-the-minimum-value-excluding-0/m-p/691707#M210573</guid>
      <dc:creator>scad</dc:creator>
      <dc:date>2020-10-15T00:16:15Z</dc:date>
    </item>
    <item>
      <title>Re: Need help Use an array to find the minimum value excluding 0</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-Use-an-array-to-find-the-minimum-value-excluding-0/m-p/691749#M210597</link>
      <description>&lt;P&gt;It is not clear what you expect as result or why you are using the temp array, the constant 8888, please clarify.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2020 05:38:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-Use-an-array-to-find-the-minimum-value-excluding-0/m-p/691749#M210597</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2020-10-15T05:38:15Z</dc:date>
    </item>
  </channel>
</rss>

