<?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: How to create a new variable with highest number from 3 other variables? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-variable-with-highest-number-from-3-other/m-p/154886#M30370</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="mailto:stat@sas"&gt;stat@sas&lt;/A&gt; and Linush,&lt;/P&gt;&lt;P&gt;Thanks so much for your quick response. I appreciate your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Nov 2014 20:18:04 GMT</pubDate>
    <dc:creator>xinjian</dc:creator>
    <dc:date>2014-11-03T20:18:04Z</dc:date>
    <item>
      <title>How to create a new variable with highest number from 3 other variables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-variable-with-highest-number-from-3-other/m-p/154883#M30367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;I have a data file showed below:&lt;/P&gt;&lt;P&gt;ID&amp;nbsp; a1&amp;nbsp; b1&amp;nbsp; c1 &lt;/P&gt;&lt;P&gt;1&amp;nbsp;&amp;nbsp; 23&amp;nbsp; 35&amp;nbsp; 61&lt;/P&gt;&lt;P&gt;2&amp;nbsp;&amp;nbsp; 76&amp;nbsp; 71&amp;nbsp; 10&lt;/P&gt;&lt;P&gt;3&amp;nbsp;&amp;nbsp; 90&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 60&lt;/P&gt;&lt;P&gt;4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 31&amp;nbsp;&amp;nbsp; 50&lt;/P&gt;&lt;P&gt;5&amp;nbsp;&amp;nbsp; 70 42&amp;nbsp; &lt;/P&gt;&lt;P&gt;6&amp;nbsp;&amp;nbsp; 35 67&amp;nbsp; 89&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want create a new variable 'd1' with highest number from a1, b1, c1.&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2014 19:45:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-variable-with-highest-number-from-3-other/m-p/154883#M30367</guid>
      <dc:creator>xinjian</dc:creator>
      <dc:date>2014-11-03T19:45:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new variable with highest number from 3 other variables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-variable-with-highest-number-from-3-other/m-p/154884#M30368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;max()&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2014 19:46:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-variable-with-highest-number-from-3-other/m-p/154884#M30368</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2014-11-03T19:46:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new variable with highest number from 3 other variables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-variable-with-highest-number-from-3-other/m-p/154885#M30369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;input ID&amp;nbsp; a1&amp;nbsp; b1&amp;nbsp; c1;&lt;/P&gt;&lt;P&gt;d1=max(of a1--c1);&lt;/P&gt;&lt;P&gt;datalines; &lt;/P&gt;&lt;P&gt;1&amp;nbsp;&amp;nbsp; 23&amp;nbsp; 35&amp;nbsp; 61&lt;/P&gt;&lt;P&gt;2&amp;nbsp;&amp;nbsp; 76&amp;nbsp; 71&amp;nbsp; 10&lt;/P&gt;&lt;P&gt;3&amp;nbsp;&amp;nbsp; 90&amp;nbsp; .&amp;nbsp;&amp;nbsp; 60&lt;/P&gt;&lt;P&gt;4&amp;nbsp;&amp;nbsp;&amp;nbsp; .&amp;nbsp; 31&amp;nbsp; 50&lt;/P&gt;&lt;P&gt;5&amp;nbsp;&amp;nbsp; 70&amp;nbsp; 42&amp;nbsp; . &lt;/P&gt;&lt;P&gt;6&amp;nbsp;&amp;nbsp; 35&amp;nbsp; 67&amp;nbsp; 89&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2014 19:50:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-variable-with-highest-number-from-3-other/m-p/154885#M30369</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2014-11-03T19:50:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new variable with highest number from 3 other variables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-variable-with-highest-number-from-3-other/m-p/154886#M30370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="mailto:stat@sas"&gt;stat@sas&lt;/A&gt; and Linush,&lt;/P&gt;&lt;P&gt;Thanks so much for your quick response. I appreciate your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2014 20:18:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-variable-with-highest-number-from-3-other/m-p/154886#M30370</guid>
      <dc:creator>xinjian</dc:creator>
      <dc:date>2014-11-03T20:18:04Z</dc:date>
    </item>
  </channel>
</rss>

