<?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 Perform PROC RANK to several datasets in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Perform-PROC-RANK-to-several-datasets/m-p/824087#M35113</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to perform a PROC RANK to several datasets. Every datasets has the same variables. I can't merge them all together because I want the ranking to be specific for every dataset.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advanced,&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 19 Jul 2022 10:04:52 GMT</pubDate>
    <dc:creator>lola_rodriguez</dc:creator>
    <dc:date>2022-07-19T10:04:52Z</dc:date>
    <item>
      <title>Perform PROC RANK to several datasets</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Perform-PROC-RANK-to-several-datasets/m-p/824087#M35113</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to perform a PROC RANK to several datasets. Every datasets has the same variables. I can't merge them all together because I want the ranking to be specific for every dataset.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advanced,&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jul 2022 10:04:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Perform-PROC-RANK-to-several-datasets/m-p/824087#M35113</guid>
      <dc:creator>lola_rodriguez</dc:creator>
      <dc:date>2022-07-19T10:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: Perform PROC RANK to several datasets</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Perform-PROC-RANK-to-several-datasets/m-p/824088#M35114</link>
      <description>&lt;P&gt;Create a view and use BY.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data all / view=all;
length name dname $41;
set
  /* list of datasets */
  indsname=dname
;
name = dname;
run;

proc rank data=all;
by name;
/* other code*/
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 19 Jul 2022 10:15:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Perform-PROC-RANK-to-several-datasets/m-p/824088#M35114</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-07-19T10:15:14Z</dc:date>
    </item>
  </channel>
</rss>

