<?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 SAS Proc Import: How to use where clause in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/SAS-Proc-Import-How-to-use-where-clause/m-p/350357#M63837</link>
    <description>&lt;P&gt;How to import only those records where Category is Fruit and Country is United States, while importing this excel file into SAS using proc import?&lt;/P&gt;</description>
    <pubDate>Sun, 16 Apr 2017 12:12:23 GMT</pubDate>
    <dc:creator>devdutt88</dc:creator>
    <dc:date>2017-04-16T12:12:23Z</dc:date>
    <item>
      <title>SAS Proc Import: How to use where clause</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/SAS-Proc-Import-How-to-use-where-clause/m-p/350357#M63837</link>
      <description>&lt;P&gt;How to import only those records where Category is Fruit and Country is United States, while importing this excel file into SAS using proc import?&lt;/P&gt;</description>
      <pubDate>Sun, 16 Apr 2017 12:12:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/SAS-Proc-Import-How-to-use-where-clause/m-p/350357#M63837</guid>
      <dc:creator>devdutt88</dc:creator>
      <dc:date>2017-04-16T12:12:23Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Proc Import: How to use where clause</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/SAS-Proc-Import-How-to-use-where-clause/m-p/350360#M63838</link>
      <description>&lt;P&gt;Here is one way:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;libname excl xlsx '/folders/myfolders/product.xlsx';

data want;
  set excl.sheet1 (where=(Category eq 'Fruit' and Country eq 'United States'));
run;
&lt;/PRE&gt;</description>
      <pubDate>Sun, 16 Apr 2017 13:43:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/SAS-Proc-Import-How-to-use-where-clause/m-p/350360#M63838</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-04-16T13:43:20Z</dc:date>
    </item>
  </channel>
</rss>

