<?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 filtering column of sas data table in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/filtering-column-of-sas-data-table/m-p/309066#M270684</link>
    <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a data table. In a particular column of the table, I have values ranging from x_1 to x_16. I want to subset the data table by having values only from x_6 to x_16 in the column. Is there a way I can achieve it by using Macro?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would appreciate any help in this problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Akhilesh&lt;/P&gt;</description>
    <pubDate>Thu, 03 Nov 2016 15:36:42 GMT</pubDate>
    <dc:creator>akhilesh_joshi</dc:creator>
    <dc:date>2016-11-03T15:36:42Z</dc:date>
    <item>
      <title>filtering column of sas data table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/filtering-column-of-sas-data-table/m-p/309066#M270684</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a data table. In a particular column of the table, I have values ranging from x_1 to x_16. I want to subset the data table by having values only from x_6 to x_16 in the column. Is there a way I can achieve it by using Macro?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would appreciate any help in this problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Akhilesh&lt;/P&gt;</description>
      <pubDate>Thu, 03 Nov 2016 15:36:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/filtering-column-of-sas-data-table/m-p/309066#M270684</guid>
      <dc:creator>akhilesh_joshi</dc:creator>
      <dc:date>2016-11-03T15:36:42Z</dc:date>
    </item>
    <item>
      <title>Re: filtering column of sas data table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/filtering-column-of-sas-data-table/m-p/309072#M270685</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
set have;
_var = input(substr(var,3),best.);
if 6 &amp;lt;= _var &amp;lt;= 16;
drop _var;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 03 Nov 2016 15:49:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/filtering-column-of-sas-data-table/m-p/309072#M270685</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-11-03T15:49:14Z</dc:date>
    </item>
  </channel>
</rss>

