<?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: Minimum and maximum value of numeric variable in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207058#M4705</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go to the main page of your question, not the communications page and you can mark the question answered. &lt;/P&gt;&lt;P&gt;ie &lt;A __default_attr="73890" __jive_macro_name="thread" class="jive_macro jive_macro_thread" href="https://communities.sas.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Mar 2015 19:45:57 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2015-03-20T19:45:57Z</dc:date>
    <item>
      <title>Minimum and maximum value of numeric variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207049#M4696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;I need to know the minimum and maximum values of a numeric variable(var1) using data steps. I need the minimum and maximum values&amp;nbsp; to recall them in the proc univariate code I am using to create a histogram. I need those values to specify the range&amp;nbsp; for the x axis. I need to create a generic code for the minimum and maximum values as the histogram will be created for a different datasets every time. I am looking to create&amp;nbsp; a macro of the proc univariate code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is an example of the code I am working on:&lt;/P&gt;&lt;P&gt;proc univariate data =final;&lt;/P&gt;&lt;P&gt;&amp;nbsp; var var1;&lt;/P&gt;&lt;P&gt;&amp;nbsp; histogram / midpoints= 4 to 36 by 0.5;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;Now: instead of '4' , I &lt;SPAN style="text-decoration: underline;"&gt;need a variable name/code&amp;nbsp; that translates into the minimum value of the variable&lt;/SPAN&gt; and instead of '36' I need a &lt;SPAN style="text-decoration: underline;"&gt;variable name/code&amp;nbsp; that translates into the maximum value of the&lt;/SPAN&gt; &lt;SPAN style="text-decoration: underline;"&gt;variable.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;i.e.&lt;/P&gt;&lt;P&gt;proc univariate data=final;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var var1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; histogram /midpoints= (code for minimum value) to (code for maximum value) by 0.5;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, proc univariate does allow to output a dataset with the minimum and maximum values by using the syntax..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;output out=strengthstats min=variable name of minimum value max=variable name of maximum values;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestion on how to pull these variables from the strengthstats dataset is also welcome.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know your ides and thoughts on it. Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 18:06:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207049#M4696</guid>
      <dc:creator>dr2014</dc:creator>
      <dc:date>2015-03-20T18:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: Minimum and maximum value of numeric variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207050#M4697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote" modifiedtitle="true"&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Also, proc univariate does allow to output a dataset with the minimum and maximum values by using the syntax..&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;output out=strengthstats min=variable name of minimum value max=variable name of maximum values;&lt;/P&gt;
&lt;P style="min-height: 8pt; padding: 0px;"&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, proc univariate can produce a dataset with min/max via syntax.&lt;/P&gt;&lt;P&gt;Why do you need a data step?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you're venturing into macro variables and macro programming, have you looked into that at all?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 18:15:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207050#M4697</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-03-20T18:15:39Z</dc:date>
    </item>
    <item>
      <title>Re: Minimum and maximum value of numeric variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207051#M4698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And if you need to summarize data before proc univariate to get a desired histogram you might as well look into the actual graphing procedures such as SGPLOT where you would have much more control. For instance you could specify the NBINS, number of bins to display, option for a HISTOGRAM in SGPLOT and worry about specific limits.&lt;/P&gt;&lt;P&gt;That might quite helpful if you have many similar variables that might shift the median but are supposed to have similar distributions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 18:41:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207051#M4698</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2015-03-20T18:41:08Z</dc:date>
    </item>
    <item>
      <title>Re: Minimum and maximum value of numeric variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207052#M4699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I am familiar with macro variables and programming. As I mentioned , I am defining a macro which with contain the proc univariate code to develop histograms. The input data sets will be different and the minimum and maximum values for the variable var1 will be different each time for different datasets. Although , I am able to get summary stats with proc univariate, I have to output the min and max values to another dataset as I will be using the noprint option. I am looking to have a generic code that pulls in the minimum and maximum values in the midpoints option. I cannot put actual numbers in the midpoints option as the datasets are going to be different all the time.&amp;nbsp; I hope I explained everything clearly. Do you have any suggestions for me ? I would appreciate your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 18:43:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207052#M4699</guid>
      <dc:creator>dr2014</dc:creator>
      <dc:date>2015-03-20T18:43:22Z</dc:date>
    </item>
    <item>
      <title>Re: Minimum and maximum value of numeric variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207053#M4700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@ballardw I do not want to summarize the data . I am happy with the histogram I got on&amp;nbsp; the sample dataset (bin size etc) and I want to move forward with proc univariate. My problem is I want a code that will determine the minimum and maximum&amp;nbsp; value of the var1 variable. proc sql&amp;nbsp; has the min and max function for pulling the minimum and maximum value of column data. Wish there was something like in in data steps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 18:51:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207053#M4700</guid>
      <dc:creator>dr2014</dc:creator>
      <dc:date>2015-03-20T18:51:37Z</dc:date>
    </item>
    <item>
      <title>Re: Minimum and maximum value of numeric variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207054#M4701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use proc univariate to generate the output data set even with the no print option.&amp;nbsp; The output dataset can then be used to create macro variables via call symputX.&amp;nbsp; Or you can use proc sql directly. Please see the code below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*create datasets with min/max of variable*/&lt;/P&gt;&lt;P&gt;proc univariate data=sashelp.class noprint;&lt;/P&gt;&lt;P&gt;var weight;&lt;/P&gt;&lt;P&gt;output out=want1 min=weight_min max=weight_max;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc print data=want1;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*create macro variables using proc sql, check log for results*/&lt;/P&gt;&lt;P&gt;proc sql noprint;&lt;/P&gt;&lt;P&gt;select min(weight), max(weight) into :weight_min, :weight_max&lt;/P&gt;&lt;P&gt;from sashelp.class;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%put weight_min = &amp;amp;weight_min;&lt;/P&gt;&lt;P&gt;%put weight_max = &amp;amp;weight_max;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 18:54:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207054#M4701</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-03-20T18:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: Minimum and maximum value of numeric variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207055#M4702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@Reeza. I did create the output data set with the minimum and maximum values in spite of the noprint option. But, I needed to pull those values in the midpoints option and the output dataset was not helping. I did try proc sql and created a table with the minimum and maximum values but didn't think further of assigning macros there.&amp;nbsp; The macros using proc sql will work perfect in what I want to accomplish. Thanks so much !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 19:24:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207055#M4702</guid>
      <dc:creator>dr2014</dc:creator>
      <dc:date>2015-03-20T19:24:37Z</dc:date>
    </item>
    <item>
      <title>Re: Minimum and maximum value of numeric variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207056#M4703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad you got it working. Please mark your question(s) answered.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 19:31:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207056#M4703</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-03-20T19:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: Minimum and maximum value of numeric variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207057#M4704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do I do that ? I figured it the first time, but for now I have been searching for it. I couldn't do it for my last question as well. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 19:42:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207057#M4704</guid>
      <dc:creator>dr2014</dc:creator>
      <dc:date>2015-03-20T19:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: Minimum and maximum value of numeric variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207058#M4705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go to the main page of your question, not the communications page and you can mark the question answered. &lt;/P&gt;&lt;P&gt;ie &lt;A __default_attr="73890" __jive_macro_name="thread" class="jive_macro jive_macro_thread" href="https://communities.sas.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 19:45:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207058#M4705</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-03-20T19:45:57Z</dc:date>
    </item>
    <item>
      <title>Re: Minimum and maximum value of numeric variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207059#M4706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. I will do it right away.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 20:20:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207059#M4706</guid>
      <dc:creator>dr2014</dc:creator>
      <dc:date>2015-03-20T20:20:15Z</dc:date>
    </item>
    <item>
      <title>Re: Minimum and maximum value of numeric variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207060#M4707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For some reason it doesn't work. I have asked SAS support for help. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 20:37:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207060#M4707</guid>
      <dc:creator>dr2014</dc:creator>
      <dc:date>2015-03-20T20:37:16Z</dc:date>
    </item>
    <item>
      <title>Re: Minimum and maximum value of numeric variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207061#M4708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG style="font-size: 11.6999998092651px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Hi &lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" data-avatarid="-1" data-externalid="" data-presence="null" data-userid="840987" data-username="dr2014" href="https://communities.sas.com/people/dr2014" id="jive-84098742263913905641186" style="padding: 0 3px 0 0; font-weight: inherit; font-style: inherit; font-size: 1.1em; font-family: inherit; color: #0e66ba;"&gt;dr2014&lt;/A&gt;&lt;/STRONG&gt;, I'm Anna Brown, community manager. I'm not sure why you're not seeing the button to mark correct or helpful answers. I can mark them for you. Which specific answer would you like to mark correct, and any as helpful?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your contributions to the community! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Anna &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 21:07:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207061#M4708</guid>
      <dc:creator>AnnaBrown</dc:creator>
      <dc:date>2015-03-20T21:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: Minimum and maximum value of numeric variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207062#M4709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just fyi annabrown@sas.. the button for correct or helpful answers were not showing up when I used Internet Explorer, but does show up when I use Firefox . So I got to it finally. Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Mar 2015 16:30:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207062#M4709</guid>
      <dc:creator>dr2014</dc:creator>
      <dc:date>2015-03-24T16:30:39Z</dc:date>
    </item>
    <item>
      <title>Re: Minimum and maximum value of numeric variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207063#M4710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh good to hear you saw it at last, &lt;STRONG style="font-size: 11.6999998092651px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" data-avatarid="-1" data-externalid="" data-presence="null" data-userid="840987" data-username="dr2014" href="https://communities.sas.com/people/dr2014" id="jive-84098742601963556236186" style="padding: 0 3px 0 0; font-weight: inherit; font-style: inherit; font-size: 1.1em; font-family: inherit; color: #0e66ba;"&gt;dr2014&lt;/A&gt;&lt;/STRONG&gt;. I'm sorry about the browser issue - thank you for bringing it to our attention. We are looking into it with the communities platform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Mar 2015 18:44:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207063#M4710</guid>
      <dc:creator>AnnaBrown</dc:creator>
      <dc:date>2015-03-24T18:44:40Z</dc:date>
    </item>
    <item>
      <title>Re: Minimum and maximum value of numeric variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207064#M4711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi dr2014, by chance could you please advise what version of IE you are using?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Mar 2015 19:39:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207064#M4711</guid>
      <dc:creator>Community_Help</dc:creator>
      <dc:date>2015-03-24T19:39:10Z</dc:date>
    </item>
    <item>
      <title>Re: Minimum and maximum value of numeric variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207065#M4712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is 11. Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Mar 2015 19:41:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Minimum-and-maximum-value-of-numeric-variable/m-p/207065#M4712</guid>
      <dc:creator>dr2014</dc:creator>
      <dc:date>2015-03-24T19:41:23Z</dc:date>
    </item>
  </channel>
</rss>

