<?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: WHERE CONDITION in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/WHERE-CONDITION/m-p/303688#M64555</link>
    <description>&lt;P&gt;Here you go. Below code is logically the same and returns the same result than the solution you've accepted.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
  create table hepmed as
  select 
    ordering_date, 
    order_status_c, 
    display_name
  from med
  where
   '06SEP2016'D &amp;lt;= ordering_date &amp;lt;= '25SEP2016'D
    and index(upcase(display_name),'HEP') &amp;gt; 0
    and order_status_c in (2,3)
    and NOT
      (
        upcase(DISPLAY_NAME)    like '%ART.LINE%' 
        or upcase(DISPLAY_NAME) like '%ART. LINE%' 
        or upcase(DISPLAY_NAME) like '%D10W%'
      )

  ;
quit;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 11 Oct 2016 00:37:19 GMT</pubDate>
    <dc:creator>Patrick</dc:creator>
    <dc:date>2016-10-11T00:37:19Z</dc:date>
    <item>
      <title>WHERE CONDITION</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WHERE-CONDITION/m-p/303496#M64479</link>
      <description>&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;how do i include the if conditions in the same query?&lt;/P&gt;&lt;P&gt;i could not put the braces correctly and so i was doing a seperate data step because of some syntax errors...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;sql&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;create&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;table&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt; hepmed &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;as&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;select&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt; *&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;from&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt; med(keep= ordering_date &lt;/FONT&gt;&lt;/FONT&gt;order_status_c display_name&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;where&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;=(&lt;/FONT&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;'06SEP2016'D&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt; &amp;lt;= ordering_date &amp;lt;= &lt;/FONT&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;'25SEP2016'D&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;and&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;index&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;(upcase(display_name),&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'HEP'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT color="#222222" face="Courier New" size="2"&gt;) &amp;gt; &lt;/FONT&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;0&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;and&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt; order_status_c &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;in&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt; (&lt;/FONT&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;2&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;,&lt;/FONT&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;3&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;,&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;)&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;))&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data &lt;FONT face="Courier New" size="2"&gt;hepmed_2&lt;/FONT&gt;;&lt;/P&gt;&lt;P&gt;set &lt;FONT face="Courier New" size="2"&gt;hepmed ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;if &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;index&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;(upcase(DISPLAY_NAME),&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'.LINE'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT color="#222222" face="Courier New" size="2"&gt;) &amp;gt; &lt;/FONT&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;0&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT color="#222222" face="Courier New" size="2"&gt; or&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;index&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;(upcase(DISPLAY_NAME),&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'. LINE'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT color="#222222" face="Courier New" size="2"&gt;) &amp;gt; &lt;/FONT&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;0&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT color="#222222" face="Courier New" size="2"&gt; or&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;index&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;(upcase(DISPLAY_NAME),&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'ASSAY'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT color="#222222" face="Courier New" size="2"&gt;) &amp;gt; &lt;/FONT&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;0&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;then&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;delete&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT color="#222222" face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;run&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Oct 2016 13:13:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WHERE-CONDITION/m-p/303496#M64479</guid>
      <dc:creator>robertrao</dc:creator>
      <dc:date>2016-10-17T13:13:29Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE CONDITION</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WHERE-CONDITION/m-p/303498#M64481</link>
      <description>&lt;P&gt;If using Proc SQL then try and stick with real SQL syntax and don't combine it with data set options like med(keep=... where=()).&lt;/P&gt;
&lt;P&gt;...and of course there is always the justified exception to the rule...&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
  create table hepmed as
  select 
    ordering_date, 
    order_status_c, 
    display_name
  from med
  where
   '06SEP2016'D &amp;lt;= ordering_date &amp;lt;= '25SEP2016'D
    and index(upcase(display_name),'HEP') &amp;gt; 0
    and order_status_c in (2,3)
    and upcase(DISPLAY_NAME) not like '%ART.LINE%' 
    and upcase(DISPLAY_NAME) not like '%ART. LINE%' 
    and upcase(DISPLAY_NAME) not like '%D10W%' 
  ;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 10 Oct 2016 14:25:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WHERE-CONDITION/m-p/303498#M64481</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2016-10-10T14:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE CONDITION</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WHERE-CONDITION/m-p/303510#M64489</link>
      <description>&lt;P&gt;If you want to keep data step options:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" color="#000080" face="Courier New"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT size="2" color="#000080" face="Courier New"&gt;sql&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT size="2" face="Courier New"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;create&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt; &lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;table&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt; hepmed &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;as&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;select&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt; *&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;from&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt; med(keep= ordering_date &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;order_status_c&lt;/FONT&gt;&amp;nbsp; &lt;FONT size="2" face="Courier New"&gt;DISPLAY_NAME&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt;=(&lt;/FONT&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT size="2" color="#008080" face="Courier New"&gt;&lt;FONT size="2" color="#008080" face="Courier New"&gt;&lt;FONT size="2" color="#008080" face="Courier New"&gt;'06SEP2016'D&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt; &amp;lt;= ordering_date &amp;lt;= &lt;/FONT&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT size="2" color="#008080" face="Courier New"&gt;&lt;FONT size="2" color="#008080" face="Courier New"&gt;&lt;FONT size="2" color="#008080" face="Courier New"&gt;'25SEP2016'D&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt; &lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;find&lt;/FONT&gt;(DISPLAY_NAME,&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;'HEP'&lt;FONT size="2" face="Courier New"&gt;,&lt;/FONT&gt;'it'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" color="#222222" face="Courier New"&gt;)&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp;&lt;/FONT&gt; order_status_c &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;in&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt; (&lt;/FONT&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT size="2" color="#008080" face="Courier New"&gt;&lt;FONT size="2" color="#008080" face="Courier New"&gt;&lt;FONT size="2" color="#008080" face="Courier New"&gt;2&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt;,&lt;/FONT&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT size="2" color="#008080" face="Courier New"&gt;&lt;FONT size="2" color="#008080" face="Courier New"&gt;&lt;FONT size="2" color="#008080" face="Courier New"&gt;3&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt;,.&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt;)&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp; ^&lt;/FONT&gt;find&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;(DISPLAY_NAME,&lt;/FONT&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;'ART.LINE'&lt;FONT size="2" face="Courier New"&gt;,&lt;/FONT&gt;'it'&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" color="#222222" face="Courier New"&gt;) &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" color="#222222" face="Courier New"&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp; ^&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;find&lt;/FONT&gt;(DISPLAY_NAME,&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;'ART. LINE'&lt;FONT size="2" face="Courier New"&gt;,&lt;/FONT&gt;'it'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" color="#222222" face="Courier New"&gt;)&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp; ^&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;find&lt;/FONT&gt;(DISPLAY_NAME,&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;'D10W'&lt;FONT size="2" face="Courier New"&gt;,&lt;/FONT&gt;'it'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" color="#222222" face="Courier New"&gt;) &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" color="#222222" face="Courier New"&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp; ^&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;find&lt;/FONT&gt;(DISPLAY_NAME,&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;'D5W'&lt;FONT size="2" face="Courier New"&gt;,&lt;/FONT&gt;'it'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" color="#222222" face="Courier New"&gt;) &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" color="#222222" face="Courier New"&gt; &lt;BR /&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp; ^&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;find&lt;/FONT&gt;(DISPLAY_NAME,&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;'SOAK'&lt;FONT size="2" face="Courier New"&gt;,&lt;/FONT&gt;'it'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" color="#222222" face="Courier New"&gt;) &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" color="#222222" face="Courier New"&gt; &lt;BR /&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp; ^&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;find&lt;/FONT&gt;(DISPLAY_NAME,&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;'FLUSH'&lt;FONT size="2" face="Courier New"&gt;,&lt;/FONT&gt;'it'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" color="#222222" face="Courier New"&gt;) &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" color="#222222" face="Courier New"&gt; &lt;BR /&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp; ^&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;find&lt;/FONT&gt;(DISPLAY_NAME,&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;'IRRIGATION'&lt;FONT size="2" face="Courier New"&gt;,&lt;/FONT&gt;'it'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" color="#222222" face="Courier New"&gt;) &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp; ^&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;find&lt;/FONT&gt;(DISPLAY_NAME,&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;'DIANEAL'&lt;FONT size="2" face="Courier New"&gt;,&lt;/FONT&gt;'it'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" color="#222222" face="Courier New"&gt;) &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" color="#222222" face="Courier New"&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp; ^&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" color="#0000ff" face="Courier New"&gt;find&lt;/FONT&gt;(DISPLAY_NAME,&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;'HEPARIN ASSAY'&lt;FONT size="2" face="Courier New"&gt;,&lt;/FONT&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;&lt;FONT size="2" color="#800080" face="Courier New"&gt;'it'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Courier New"&gt;&lt;FONT size="2" color="#222222" face="Courier New"&gt;) &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;&lt;FONT face="Courier New"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;/FONT&gt;));&lt;/P&gt;
&lt;P&gt;quit;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2016 08:32:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WHERE-CONDITION/m-p/303510#M64489</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2016-10-10T08:32:55Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE CONDITION</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WHERE-CONDITION/m-p/303511#M64490</link>
      <description>&lt;P&gt;If you want to keep the data step option as&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ﻿&lt;/a&gt;&amp;nbsp;proposes then I'd have it in a data step.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data hepmed;
  set med(keep= ordering_date order_status_c  DISPLAY_NAME
        where=('06SEP2016'D &amp;lt;= ordering_date &amp;lt;= '25SEP2016'D
              &amp;amp; find(DISPLAY_NAME,'HEP','it')
              &amp;amp; order_status_c in (2,3,.)
              &amp;amp; ^find(DISPLAY_NAME,'ART.LINE','it') 
              &amp;amp; ^find(DISPLAY_NAME,'ART. LINE','it')
              &amp;amp; ^find(DISPLAY_NAME,'D10W','it') 
              &amp;amp; ^find(DISPLAY_NAME,'D5W','it') 
              &amp;amp; ^find(DISPLAY_NAME,'SOAK','it') 
              &amp;amp; ^find(DISPLAY_NAME,'FLUSH','it') 
              &amp;amp; ^find(DISPLAY_NAME,'IRRIGATION','it')
              &amp;amp; ^find(DISPLAY_NAME,'DIANEAL','it') 
              &amp;amp; ^find(DISPLAY_NAME,'HEPARIN ASSAY','it')
          ));
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 10 Oct 2016 08:40:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WHERE-CONDITION/m-p/303511#M64490</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2016-10-10T08:40:51Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE CONDITION</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WHERE-CONDITION/m-p/303524#M64494</link>
      <description>&lt;P&gt;Use HAVING clasue instead of WHERE clause due to have aggregrate function INDEX() .&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2016 10:43:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WHERE-CONDITION/m-p/303524#M64494</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-10-10T10:43:39Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE CONDITION</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WHERE-CONDITION/m-p/303547#M64502</link>
      <description>&lt;P&gt;While you have received many valid comments, the one piece that absolutely has to change is the extra comma here:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;in (2,3,)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your original code might even work if you removed that final comma.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2016 13:26:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WHERE-CONDITION/m-p/303547#M64502</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2016-10-10T13:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE CONDITION</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WHERE-CONDITION/m-p/303559#M64504</link>
      <description>&lt;P&gt;Thank you very much for all the valuable suggestions. It worked for me using "NOT LIKE".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 17 Oct 2016 13:14:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WHERE-CONDITION/m-p/303559#M64504</guid>
      <dc:creator>robertrao</dc:creator>
      <dc:date>2016-10-17T13:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE CONDITION</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WHERE-CONDITION/m-p/303665#M64547</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp﻿&lt;/a&gt;&amp;nbsp;there are no string aggregration functions is SAS. &lt;BR /&gt;We need some though, see&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SASware-Ballot-Ideas/create-string-summary-functions/idi-p/288035" target="_blank"&gt;https://communities.sas.com/t5/SASware-Ballot-Ideas/create-string-summary-functions/idi-p/288035&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2016 20:58:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WHERE-CONDITION/m-p/303665#M64547</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2016-10-10T20:58:27Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE CONDITION</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WHERE-CONDITION/m-p/303688#M64555</link>
      <description>&lt;P&gt;Here you go. Below code is logically the same and returns the same result than the solution you've accepted.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
  create table hepmed as
  select 
    ordering_date, 
    order_status_c, 
    display_name
  from med
  where
   '06SEP2016'D &amp;lt;= ordering_date &amp;lt;= '25SEP2016'D
    and index(upcase(display_name),'HEP') &amp;gt; 0
    and order_status_c in (2,3)
    and NOT
      (
        upcase(DISPLAY_NAME)    like '%ART.LINE%' 
        or upcase(DISPLAY_NAME) like '%ART. LINE%' 
        or upcase(DISPLAY_NAME) like '%D10W%'
      )

  ;
quit;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 11 Oct 2016 00:37:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WHERE-CONDITION/m-p/303688#M64555</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2016-10-11T00:37:19Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE CONDITION</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WHERE-CONDITION/m-p/303742#M64573</link>
      <description>&lt;P&gt;Sorry. My bad.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Oct 2016 11:14:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WHERE-CONDITION/m-p/303742#M64573</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-10-11T11:14:58Z</dc:date>
    </item>
  </channel>
</rss>

