<?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: drop a range of variables &amp; rows in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/drop-a-range-of-variables-rows/m-p/182935#M46573</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;or you could do this if you know the first variable name and the 50th variable name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;set have( keep= 1st_var&amp;nbsp; --&amp;nbsp; 50th_var );&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Jan 2015 06:53:13 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2015-01-15T06:53:13Z</dc:date>
    <item>
      <title>drop a range of variables &amp; rows</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/drop-a-range-of-variables-rows/m-p/182933#M46571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to drop a range of variables &amp;amp; obs from my data set to make it smaller. The data set has 1200 variables &amp;amp; 80000 obs. My objective is to create a small sample data set for which I can write the test code otherwise it takes too long to test every step. The obs bit was easy as I used the (obs = ___ ) option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found several threads which explain how to drop variables conditionally or when there is a pattern to the varname but nothing which explains how to just keep first &lt;EM&gt;n&lt;/EM&gt; variables or &lt;EM&gt;n&lt;/EM&gt; random variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A __default_attr="176695" __jive_macro_name="message" class="jive_macro jive_macro_message" href="https://communities.sas.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A __default_attr="172507" __jive_macro_name="message" class="jive_macro jive_macro_message" href="https://communities.sas.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A __default_attr="234505" __jive_macro_name="message" class="jive_macro jive_macro_message" href="https://communities.sas.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is no pattern in my varnames as such . I just want to keep any 50 variables and remove the rest without having to type varnames.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Nikhil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jan 2015 15:51:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/drop-a-range-of-variables-rows/m-p/182933#M46571</guid>
      <dc:creator>ngnikhilgoyal</dc:creator>
      <dc:date>2015-01-14T15:51:52Z</dc:date>
    </item>
    <item>
      <title>Re: drop a range of variables &amp; rows</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/drop-a-range-of-variables-rows/m-p/182934#M46572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use something like the following. The following creates a file containing the first 4 variables, and first 10 records. from the file sashelp.class:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql noprint;&lt;/P&gt;&lt;P&gt;&amp;nbsp; select name&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; into :keeps separated by ' '&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from dictionary.columns&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where libname='SASHELP' and&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; memname='CLASS' and&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; varnum le 4&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set sashelp.class (keep=&amp;amp;keeps. obs=10);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jan 2015 16:10:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/drop-a-range-of-variables-rows/m-p/182934#M46572</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2015-01-14T16:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: drop a range of variables &amp; rows</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/drop-a-range-of-variables-rows/m-p/182935#M46573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;or you could do this if you know the first variable name and the 50th variable name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;set have( keep= 1st_var&amp;nbsp; --&amp;nbsp; 50th_var );&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jan 2015 06:53:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/drop-a-range-of-variables-rows/m-p/182935#M46573</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2015-01-15T06:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: drop a range of variables &amp; rows</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/drop-a-range-of-variables-rows/m-p/182936#M46574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have got excellent answers regarding first n, here is one way to do 'random n', the example is to get 10obs, and random 7 variables from sashelp.cars. (note: It runs faster if using Proc SQL on dictionary.columns, sashelp.vcolumn is much slower, it will take out couple of minutes on your first run):&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG style="color: navy; background: white; font-family: 'Courier New';"&gt;PROC&lt;/STRONG&gt; &lt;STRONG style="color: navy; background: white; font-family: 'Courier New';"&gt;SURVEYSELECT&lt;/STRONG&gt; &lt;SPAN style="font-family: 'Courier New'; color: blue; background: white;"&gt;DATA&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;=SASHELP.VCOLUMN (&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: blue; background: white;"&gt;WHERE&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;=(LIBNAME=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: purple; background: white;"&gt;'SASHELP'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt; AND MEMNAME=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: purple; background: white;"&gt;'CARS'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;)) &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; color: blue; background: white;"&gt;OUT&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;=VARNUM(&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: blue; background: white;"&gt;KEEP&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;=VARNUM NAME)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; color: blue; background: white;"&gt;METHOD&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;=SRS&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; color: blue; background: white;"&gt;N&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;=&lt;/SPAN&gt;&lt;STRONG style="color: teal; background: white; font-family: 'Courier New';"&gt;7&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG style="color: navy; background: white; font-family: 'Courier New';"&gt;RUN&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG style="color: navy; background: white; font-family: 'Courier New';"&gt;PROC&lt;/STRONG&gt; &lt;STRONG style="color: navy; background: white; font-family: 'Courier New';"&gt;SQL&lt;/STRONG&gt; &lt;SPAN style="font-family: 'Courier New'; color: blue; background: white;"&gt;NOPRINT&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: blue; background: white;"&gt;SELECT&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt; NAME &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: blue; background: white;"&gt;INTO&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt; :VNAME SEPARATED BY &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: purple; background: white;"&gt;' '&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; color: blue; background: white;"&gt;FROM&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt; VARNUM;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG style="color: navy; background: white; font-family: 'Courier New';"&gt;QUIT&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG style="color: navy; background: white; font-family: 'Courier New';"&gt;DATA&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt; WANT;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt; &lt;SPAN style="font-family: 'Courier New'; color: blue; background: white;"&gt;SET&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt; SASHELP.CARS (&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: blue; background: white;"&gt;OBS&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;=&lt;/SPAN&gt;&lt;STRONG style="color: teal; background: white; font-family: 'Courier New';"&gt;10&lt;/STRONG&gt; &lt;SPAN style="font-family: 'Courier New'; color: blue; background: white;"&gt;KEEP&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;=&amp;amp;VNAME);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; background: white; font-family: 'Courier New';"&gt;RUN&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;Haikuo &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jan 2015 14:53:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/drop-a-range-of-variables-rows/m-p/182936#M46574</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2015-01-15T14:53:19Z</dc:date>
    </item>
    <item>
      <title>Re: drop a range of variables &amp; rows</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/drop-a-range-of-variables-rows/m-p/182937#M46575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If it turns out that you really do want the variable selection to be random, the following will produce a warning, but will (I believe) correctly accomplish the task fairly easily:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql noprint outobs=4;&lt;/P&gt;&lt;P&gt;&amp;nbsp; select name&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; into :keeps separated by ' '&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from dictionary.columns&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where libname='SASHELP' and&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; memname='CLASS'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; order by ranuni(0)&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set sashelp.class (keep=&amp;amp;keeps. obs=10);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jan 2015 15:24:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/drop-a-range-of-variables-rows/m-p/182937#M46575</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2015-01-15T15:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: drop a range of variables &amp; rows</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/drop-a-range-of-variables-rows/m-p/182938#M46576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hai.Kuo, Can you please tell me how to format the code in SAS Scheme in the editor window? Is there a meta-post which explains how to do this ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;nikhil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jan 2015 16:26:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/drop-a-range-of-variables-rows/m-p/182938#M46576</guid>
      <dc:creator>ngnikhilgoyal</dc:creator>
      <dc:date>2015-01-15T16:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: drop a range of variables &amp; rows</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/drop-a-range-of-variables-rows/m-p/182939#M46577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;EG does for me. Right click inside program window, you will see an option "format code". And I don't think Program editor in Base SAS can do that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jan 2015 16:33:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/drop-a-range-of-variables-rows/m-p/182939#M46577</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2015-01-15T16:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: drop a range of variables &amp; rows</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/drop-a-range-of-variables-rows/m-p/182940#M46578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, I meant when I copy paste it to the text editor here in SAS communities, it loses all formatting. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jan 2015 16:40:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/drop-a-range-of-variables-rows/m-p/182940#M46578</guid>
      <dc:creator>ngnikhilgoyal</dc:creator>
      <dc:date>2015-01-15T16:40:26Z</dc:date>
    </item>
    <item>
      <title>Re: drop a range of variables &amp; rows</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/drop-a-range-of-variables-rows/m-p/182941#M46579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or, that is where it gets complicated. It highly depends on the type of your Web browser and settings in your browser. Since all you lost are just formats, you could use Microsoft Word as a middle man. It works for some.&lt;/P&gt;&lt;P&gt;Good luck,&lt;/P&gt;&lt;P&gt;Haikuo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jan 2015 16:47:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/drop-a-range-of-variables-rows/m-p/182941#M46579</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2015-01-15T16:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: drop a range of variables &amp; rows</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/drop-a-range-of-variables-rows/m-p/182942#M46580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First copy &amp;amp; paste to Word, then Copy &amp;amp; paste again into the forum.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jan 2015 16:49:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/drop-a-range-of-variables-rows/m-p/182942#M46580</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2015-01-15T16:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: drop a range of variables &amp; rows</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/drop-a-range-of-variables-rows/m-p/182943#M46581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks - yeah that sounds like the thing to do !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jan 2015 16:55:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/drop-a-range-of-variables-rows/m-p/182943#M46581</guid>
      <dc:creator>ngnikhilgoyal</dc:creator>
      <dc:date>2015-01-15T16:55:52Z</dc:date>
    </item>
  </channel>
</rss>

