<?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 OR operator and where clause in Developers</title>
    <link>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44483#M2852</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm including my original code below. Yes, what we are hoping to do is allow the end user the option to either enter a filedate_min and filedate_max or termdate_min and termdate_max. In other words, if the user enters a date range in the prompts for the stroed process for only filedate_min and filedate_max, the code needs to suggest that termdate_min an termdate_max remain NULL or blank and vice verse.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;%stpbegin;&lt;BR /&gt;libname IDB "/res/IDB/updates";&lt;/P&gt;&lt;P&gt;%macro data();&lt;BR /&gt;data work.test;&lt;BR /&gt;set idb.cv00on;&amp;nbsp; &lt;BR /&gt;where &lt;BR /&gt;(NOS in&lt;BR /&gt;( &lt;BR /&gt;%DO I = 1 %TO &amp;amp;NOS_COUNT;&lt;BR /&gt;%if &amp;amp;i =1 %then %do;&lt;BR /&gt;&amp;amp;nos&lt;BR /&gt;%end;&lt;BR /&gt;%else %do;&lt;BR /&gt;&amp;amp;&amp;amp;nos&amp;amp;i&lt;BR /&gt;%end;&lt;BR /&gt;%END;&lt;BR /&gt;)&lt;BR /&gt;) &lt;BR /&gt;and (filedate between "&amp;amp;FILEDATE_MIN"d and "&amp;amp;FILEDATE_MAX"d);&lt;BR /&gt;run;&lt;BR /&gt;%mend;&lt;BR /&gt;%data&lt;BR /&gt;proc print data=work.test;&lt;BR /&gt;run;&lt;BR /&gt;%stpend;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Feb 2012 13:32:35 GMT</pubDate>
    <dc:creator>AshleyM</dc:creator>
    <dc:date>2012-02-03T13:32:35Z</dc:date>
    <item>
      <title>OR operator and where clause</title>
      <link>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44479#M2848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to write code that allows an end user the option to select either the "var1" or "var2" date range. Currently I have the following code below, which works only for "var1" date range.&amp;nbsp; How would I incorporate code so the end user has the option of choosing "var1" or "var2" (not both)? I tried using the OR operator (|) but to no avail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where filedate between "&amp;amp;VAR1_MIN"d and "&amp;amp;VAR1_MAX"d;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2012 16:38:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44479#M2848</guid>
      <dc:creator>AshleyM</dc:creator>
      <dc:date>2012-02-02T16:38:06Z</dc:date>
    </item>
    <item>
      <title>OR operator and where clause</title>
      <link>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44480#M2849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried IN operator.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2012 20:09:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44480#M2849</guid>
      <dc:creator>Hima</dc:creator>
      <dc:date>2012-02-02T20:09:58Z</dc:date>
    </item>
    <item>
      <title>OR operator and where clause</title>
      <link>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44481#M2850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure what you mean by one but not both.&amp;nbsp; If you are saying that on set of macro variables will be empty then you might need some macro logic.&amp;nbsp; If you just want to find records in one range or the other then use () to group your conditions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #eef4f9;"&gt;where (filedate between "&amp;amp;VAR1_MIN"d and "&amp;amp;VAR1_MAX"d)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; or &lt;SPAN style="background-color: #eef4f9;"&gt;(filedate between "&amp;amp;VAR2_MIN"d and "&amp;amp;VAR2_MAX"d)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #eef4f9;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2012 20:16:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44481#M2850</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2012-02-02T20:16:50Z</dc:date>
    </item>
    <item>
      <title>Re: OR operator and where clause</title>
      <link>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44482#M2851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Assuming I understand the question, this would do the trick.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%macro subset (variable_to_use=);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where filedate between "&amp;amp;&amp;amp;&amp;amp;variable_to_use._MIN"d and "&amp;amp;&amp;amp;&amp;amp;variable_to_use._MAX"d;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%mend subset;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might add more code inside the macro if you would like, and you need to values assigned to &amp;amp;VAR1_MIN, &amp;amp;VAR1_MAX, &amp;amp;VAR2_MIN, and &amp;amp;VAR2_MAX.&amp;nbsp; Again if I understand the question properly, the user would call the macro using either of these:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%SUBSET (variable_to_use=VAR1)&lt;/P&gt;&lt;P&gt;%SUBSET (variable_to_use=VAR2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And the macro generates the appropriate WHERE statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2012 02:25:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44482#M2851</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2012-02-03T02:25:20Z</dc:date>
    </item>
    <item>
      <title>OR operator and where clause</title>
      <link>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44483#M2852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm including my original code below. Yes, what we are hoping to do is allow the end user the option to either enter a filedate_min and filedate_max or termdate_min and termdate_max. In other words, if the user enters a date range in the prompts for the stroed process for only filedate_min and filedate_max, the code needs to suggest that termdate_min an termdate_max remain NULL or blank and vice verse.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;%stpbegin;&lt;BR /&gt;libname IDB "/res/IDB/updates";&lt;/P&gt;&lt;P&gt;%macro data();&lt;BR /&gt;data work.test;&lt;BR /&gt;set idb.cv00on;&amp;nbsp; &lt;BR /&gt;where &lt;BR /&gt;(NOS in&lt;BR /&gt;( &lt;BR /&gt;%DO I = 1 %TO &amp;amp;NOS_COUNT;&lt;BR /&gt;%if &amp;amp;i =1 %then %do;&lt;BR /&gt;&amp;amp;nos&lt;BR /&gt;%end;&lt;BR /&gt;%else %do;&lt;BR /&gt;&amp;amp;&amp;amp;nos&amp;amp;i&lt;BR /&gt;%end;&lt;BR /&gt;%END;&lt;BR /&gt;)&lt;BR /&gt;) &lt;BR /&gt;and (filedate between "&amp;amp;FILEDATE_MIN"d and "&amp;amp;FILEDATE_MAX"d);&lt;BR /&gt;run;&lt;BR /&gt;%mend;&lt;BR /&gt;%data&lt;BR /&gt;proc print data=work.test;&lt;BR /&gt;run;&lt;BR /&gt;%stpend;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2012 13:32:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44483#M2852</guid>
      <dc:creator>AshleyM</dc:creator>
      <dc:date>2012-02-03T13:32:35Z</dc:date>
    </item>
    <item>
      <title>OR operator and where clause</title>
      <link>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44484#M2853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It looks like you ask the user to fill in two of four entries, i.e.,&lt;/P&gt;&lt;P&gt;filedate_min&lt;/P&gt;&lt;P&gt;filedate_max&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;termdate_min&lt;/P&gt;&lt;P&gt;termdate_max&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could either allow just one set or both and, in either case, have defaults such that if a field isn't entered, it gets the highest or lowest possible value.&amp;nbsp; Thus, if filedate_min or termdate_min are left blank, they are set to the lowest possible value (e.g., sometime in the 1800s maybe).&amp;nbsp; And, if filedate_max or termdate_max are left blank, they are set to some seemingly absured high value (e.g., 31DEC5000);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That way you could just use a where statement that includes both.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2012 13:43:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44484#M2853</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-02-03T13:43:16Z</dc:date>
    </item>
    <item>
      <title>OR operator and where clause</title>
      <link>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44485#M2854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Art, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, basically if an end user is interested in the filedate they are not interested in the termdate. Therefore, how would I default to keep filedate_min and filedate_max blank if the user enters information for termdate_min and termdate_max? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2012 14:10:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44485#M2854</guid>
      <dc:creator>AshleyM</dc:creator>
      <dc:date>2012-02-03T14:10:46Z</dc:date>
    </item>
    <item>
      <title>OR operator and where clause</title>
      <link>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44486#M2855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you default all four to their respective min and max possible values, then it becomes a non-issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thus, that way, if one doesn't put a value into any of those fields, they get all of the records.&lt;/P&gt;&lt;P&gt;If they only enter a filedate_min, they get all records after than min date.&lt;/P&gt;&lt;P&gt;If they enter all four values, they would only get records that meet the two ranges.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In short, going that way, your where statement would only have to include (I don't know the variable names):&lt;/P&gt;&lt;P&gt;where=((&lt;SPAN style="background-color: #eef4f9;"&gt;filedate between "&amp;amp;FILEDATE_MIN"d and "&amp;amp;FILEDATE_MAX"d) and &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;(term&lt;SPAN style="background-color: #eef4f9;"&gt;date between "&amp;amp;termDATE_MIN"d and "&amp;amp;termDATE_MAX"d));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #eef4f9;"&gt;Of course, that is assuming that I correctly understand what you are trying to do.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #eef4f9;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #eef4f9;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2012 14:19:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44486#M2855</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-02-03T14:19:54Z</dc:date>
    </item>
    <item>
      <title>OR operator and where clause</title>
      <link>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44487#M2856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ashley,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The programming part is easy.&amp;nbsp; The part that you have to work through is setting up the rules.&amp;nbsp; In real life, an end user might enter anywhere from 0 to 4 pieces of information.&amp;nbsp; You'll need to spell out what should happen in each case.&amp;nbsp; There's no right and wrong here, from a programming point of view.&amp;nbsp; For example, if the end user enters only FILEDATE_MIN, what should happen?&amp;nbsp; Should the program send a message to the user, and allow the user a second chance?&amp;nbsp; Should the program shut down?&amp;nbsp; Should it send a warning to the user and select all records from FILEDATE_MIN going forward?&amp;nbsp; These decisions are much harder then the programming part.&amp;nbsp; It's fairly trivial to program that if the user enters all four, only use one set and ignore the other set. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2012 16:17:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44487#M2856</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2012-02-03T16:17:04Z</dc:date>
    </item>
    <item>
      <title>OR operator and where clause</title>
      <link>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44488#M2857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, forgot to add the code.&amp;nbsp; You have:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and (filedate between "&amp;amp;FILEDATE_MIN"d and "&amp;amp;FILEDATE_MAX"d); &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's one possible replacement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and&amp;nbsp; %if %length(&amp;amp;termdate_min) &amp;gt; 0 %then (termdate between "&amp;amp;TERMDATE_MIN"d and "&amp;amp;TERMDATE_MAX"d);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %else (filedate between "&amp;amp;FILEDATE_MIN"d and "&amp;amp;FILEDATE_MAX"d);&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't omit that final semicolon. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As long as the user entered something for &amp;amp;TERMDATE_MIN, the program uses TERMDATE in the WHERE clause.&amp;nbsp; Otherwise it uses FILEDATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2012 18:20:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44488#M2857</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2012-02-03T18:20:48Z</dc:date>
    </item>
    <item>
      <title>Re: OR operator and where clause</title>
      <link>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44489#M2858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you "Astounding." Your replacement code works perfectly. Now, onto figuring out how to set the prompts in Management Console.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2012 18:28:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44489#M2858</guid>
      <dc:creator>AshleyM</dc:creator>
      <dc:date>2012-02-03T18:28:20Z</dc:date>
    </item>
    <item>
      <title>OR operator and where clause</title>
      <link>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44490#M2859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I apologize for the confusion. I have since modified the capabilities I'd like the users to have.&amp;nbsp; Essentially, I want the users to be able to select the following parameters below. Thus, giving them the option of choosing filedate or termdate or filedate and termdate. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #eef4f9;"&gt;where (filedate between "&amp;amp;VAR1_MIN"d and "&amp;amp;VAR1_MAX"d)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; or &lt;SPAN style="background-color: #eef4f9;"&gt;(termdate between "&amp;amp;VAR2_MIN"d and "&amp;amp;VAR2_MAX"d) or ((&lt;/SPAN&gt;filedate between "&amp;amp;VAR1_MIN"d and "&amp;amp;VAR1_MAX"d) and &lt;SPAN style="background-color: #eef4f9;"&gt;(termdate between "&amp;amp;VAR2_MIN"d and "&amp;amp;VAR2_MAX"d))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #eef4f9;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2012 16:26:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44490#M2859</guid>
      <dc:creator>AshleyM</dc:creator>
      <dc:date>2012-02-22T16:26:36Z</dc:date>
    </item>
    <item>
      <title>OR operator and where clause</title>
      <link>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44491#M2860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ashley,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This looks like a stored process of which I have absolutely 0 expertise.&amp;nbsp; However, that said, it looks like you are able to pass macro variables that users can select, namely &lt;SPAN style="background-color: #eef4f9;"&gt;&amp;amp;VAR1_MIN, &amp;amp;VAR1_MAX, &lt;SPAN style="background-color: #eef4f9;"&gt;&amp;amp;VAR2_MIN and &amp;amp;VAR2_MAX&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #eef4f9;"&gt;Couldn't you default the two min macro variables to a date lower than any filedate or termdate, and default the two max variables to &lt;SPAN style="background-color: #eef4f9;"&gt;a date greater than any filedate or termdate, and only replace those if entered as criteria by the user?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #eef4f9;"&gt;If so, then your where statement could be reduced to:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #eef4f9;"&gt;&lt;SPAN&gt;where (filedate between "&amp;amp;VAR1_MIN"d and "&amp;amp;VAR1_MAX"d)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #eef4f9;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; and &lt;SPAN&gt;(termdate between "&amp;amp;VAR2_MIN"d and "&amp;amp;VAR2_MAX"d)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2012 17:01:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/OR-operator-and-where-clause/m-p/44491#M2860</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-02-22T17:01:35Z</dc:date>
    </item>
  </channel>
</rss>

