<?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: What is Logical Operator  for  NOT BETWEEN in SAS ? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/What-is-Logical-Operator-for-NOT-BETWEEN-in-SAS/m-p/827428#M326844</link>
    <description>&lt;P&gt;See how base SAS translates NOT BETWEEN :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;5    data want;
6     set sashelp.class;
7     where height NOT between 60 and 100;
8    run;

NOTE: There were 7 observations read from the data set SASHELP.CLASS.
      WHERE  not (height&amp;gt;=60 and height&amp;lt;=100);
NOTE: The data set WORK.WANT has 7 observations and 5 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
    <pubDate>Fri, 05 Aug 2022 18:50:06 GMT</pubDate>
    <dc:creator>sbxkoenk</dc:creator>
    <dc:date>2022-08-05T18:50:06Z</dc:date>
    <item>
      <title>What is Logical Operator  for  NOT BETWEEN in SAS ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-Logical-Operator-for-NOT-BETWEEN-in-SAS/m-p/827414#M326836</link>
      <description>&lt;P&gt;Hi SAS experts,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We use:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;'01AUG2022'D&lt;FONT size="5"&gt;&lt;STRONG&gt; &lt;FONT color="#00FF00"&gt;&amp;lt;=&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt; birthdate&lt;FONT size="5"&gt;&lt;STRONG&gt;&lt;FONT color="#00FF00"&gt; &amp;lt;=&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt; '05AUG2022'D (to derive birthdates that fall&amp;nbsp;&lt;FONT color="#00FF00"&gt;BETWEEN&lt;/FONT&gt; Aug 1st and Aug 5, 2022)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What operators do we use to say &lt;FONT color="#FF00FF"&gt;NOT BETWEEN&lt;/FONT&gt; ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Fri, 05 Aug 2022 18:05:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-Logical-Operator-for-NOT-BETWEEN-in-SAS/m-p/827414#M326836</guid>
      <dc:creator>inquistive</dc:creator>
      <dc:date>2022-08-05T18:05:34Z</dc:date>
    </item>
    <item>
      <title>Re: What is Logical Operator  for  NOT BETWEEN in SAS ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-Logical-Operator-for-NOT-BETWEEN-in-SAS/m-p/827417#M326838</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;NOT ('01AUG2022'D &amp;lt;= birthdate &amp;lt;= '05AUG2022'D)

birthdate &amp;lt; '01AUG2022'D &amp;amp; birthdate &amp;gt;'05AUG2022'D&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Two options...first is easier to understand.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Aug 2022 18:12:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-Logical-Operator-for-NOT-BETWEEN-in-SAS/m-p/827417#M326838</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-08-05T18:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: What is Logical Operator  for  NOT BETWEEN in SAS ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-Logical-Operator-for-NOT-BETWEEN-in-SAS/m-p/827423#M326841</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Thank you, Reeza!&lt;/P&gt;
&lt;P&gt;It works fine. I am curious if there is any way we can get rid of this naughty 'NOT' too in the code&lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I mean&amp;nbsp; two (&amp;lt;=) means BETWEEN. Shouldn't there be some operator(s)&amp;nbsp; that does not require support of any letters ?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let's see&amp;nbsp; if any SASsy guys or people from&amp;nbsp; SAS headquarters chime in.&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Fri, 05 Aug 2022 18:40:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-Logical-Operator-for-NOT-BETWEEN-in-SAS/m-p/827423#M326841</guid>
      <dc:creator>inquistive</dc:creator>
      <dc:date>2022-08-05T18:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: What is Logical Operator  for  NOT BETWEEN in SAS ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-Logical-Operator-for-NOT-BETWEEN-in-SAS/m-p/827428#M326844</link>
      <description>&lt;P&gt;See how base SAS translates NOT BETWEEN :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;5    data want;
6     set sashelp.class;
7     where height NOT between 60 and 100;
8    run;

NOTE: There were 7 observations read from the data set SASHELP.CLASS.
      WHERE  not (height&amp;gt;=60 and height&amp;lt;=100);
NOTE: The data set WORK.WANT has 7 observations and 5 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Fri, 05 Aug 2022 18:50:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-Logical-Operator-for-NOT-BETWEEN-in-SAS/m-p/827428#M326844</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2022-08-05T18:50:06Z</dc:date>
    </item>
    <item>
      <title>Re: What is Logical Operator  for  NOT BETWEEN in SAS ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-Logical-Operator-for-NOT-BETWEEN-in-SAS/m-p/827429#M326845</link>
      <description>Yup, that's what every SAS user uses &amp;amp;  knows of . &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 05 Aug 2022 19:02:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-Logical-Operator-for-NOT-BETWEEN-in-SAS/m-p/827429#M326845</guid>
      <dc:creator>inquistive</dc:creator>
      <dc:date>2022-08-05T19:02:27Z</dc:date>
    </item>
    <item>
      <title>Re: What is Logical Operator  for  NOT BETWEEN in SAS ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-Logical-Operator-for-NOT-BETWEEN-in-SAS/m-p/827435#M326847</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/83652"&gt;@inquistive&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I mean&amp;nbsp; two (&amp;lt;=) means BETWEEN. Shouldn't there be some operator(s)&amp;nbsp; that does not require support of any letters ?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let's see&amp;nbsp; if any SASsy guys or people from&amp;nbsp; SAS headquarters chime in.&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;So instead of the word NOT you want a &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.3/lepg/p1n8bsqqd03xppn17pgvjpjlbhhs.htm#n0n3xelnkk54yyn1q8q13f1bkadl" target="_self"&gt;symbol&lt;/A&gt;?&lt;/P&gt;
&lt;P&gt;There are a few but tilde is the simplest one, it depends on your OS.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;∘ ¬ ~&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Something like:&lt;/P&gt;
&lt;PRE&gt; 1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 68         
 69         data want;
 70         set sashelp.class;
 71         
 72         where ~( 12 &amp;lt; age &amp;lt;14);
 73         run;
 
 NOTE: There were 16 observations read from the data set SASHELP.CLASS.
       WHERE  not (age&amp;gt;12 and age&amp;lt;14);
 NOTE: The data set WORK.WANT has 16 observations and 5 variables.
 NOTE: DATA statement used (Total process time):
       real time           0.00 seconds
       user cpu time       0.01 seconds
       system cpu time     0.00 seconds
       memory              704.37k
       OS Memory           25764.00k
       Timestamp           08/05/2022 07:19:12 PM
       Step Count                        24  Switch Count  2
       Page Faults                       0
       Page Reclaims                     226
       Page Swaps                        0
       Voluntary Context Switches        10
       Involuntary Context Switches      0
       Block Input Operations            0
       Block Output Operations           264&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE id="p09ouuwsqnzqcmn1pca39csf2byw" class="xisDoc-table"&gt;&lt;CAPTION class="xisDoc-title"&gt;Logical Operators&lt;/CAPTION&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TH class="xisDoc-palette_0 xisDoc-horizontalLeft xisDoc-verticalTop"&gt;
&lt;P class="xisDoc-paragraph"&gt;Symbol/Mnemonic&lt;/P&gt;
&lt;/TH&gt;
&lt;TH class="xisDoc-verticalTop"&gt;
&lt;P class="xisDoc-paragraph"&gt;Description&lt;/P&gt;
&lt;/TH&gt;
&lt;TH class="xisDoc-palette_0 xisDoc-horizontalLeft xisDoc-verticalTop"&gt;
&lt;P class="xisDoc-paragraph"&gt;Example&lt;/P&gt;
&lt;/TH&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="xisDoc-horizontalLeft xisDoc-verticalTop"&gt;
&lt;P class="xisDoc-paragraph"&gt;&amp;amp; or AND&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P class="xisDoc-paragraph"&gt;If both of the quantities linked by an AND are 1 (true), then the result of the AND operation is 1. Otherwise, the result is 0.&lt;/P&gt;
&lt;/TD&gt;
&lt;TD class="xisDoc-horizontalLeft xisDoc-verticalTop"&gt;
&lt;P class="xisDoc-paragraph"&gt;&lt;CODE class="xisDoc-inlineCode"&gt;(a&amp;gt;b &amp;amp; c&amp;gt;d)&lt;/CODE&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="xisDoc-horizontalLeft xisDoc-verticalTop"&gt;
&lt;P class="xisDoc-paragraph"&gt;| or OR&lt;A class="xisDoc-legendRef" tabindex="0" href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.3/lepg/p1n8bsqqd03xppn17pgvjpjlbhhs.htm#p1xiqzxtd4u1mvn1jmnx8a70ej3h" target="_blank"&gt;1&lt;/A&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P class="xisDoc-paragraph"&gt;If either of the quantities linked by an OR is 1 (true), then the result of the OR operation is 1 (true). Otherwise, the OR operation produces a 0.&lt;/P&gt;
&lt;/TD&gt;
&lt;TD class="xisDoc-horizontalLeft xisDoc-verticalTop"&gt;
&lt;P class="xisDoc-paragraph"&gt;&lt;CODE class="xisDoc-inlineCode"&gt;(a&amp;gt;b or c&amp;gt;d)&lt;/CODE&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="xisDoc-horizontalLeft xisDoc-verticalTop"&gt;
&lt;P class="xisDoc-paragraph"&gt;! or OR&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P class="xisDoc-paragraph"&gt;&amp;nbsp;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P class="xisDoc-paragraph"&gt;&amp;nbsp;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="xisDoc-horizontalLeft xisDoc-verticalTop"&gt;
&lt;P class="xisDoc-paragraph"&gt;¦ or OR&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P class="xisDoc-paragraph"&gt;&amp;nbsp;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P class="xisDoc-paragraph"&gt;&amp;nbsp;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="xisDoc-horizontalLeft xisDoc-verticalTop"&gt;
&lt;P class="xisDoc-paragraph"&gt;¬ or NOT&lt;A class="xisDoc-legendRef" tabindex="0" href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.3/lepg/p1n8bsqqd03xppn17pgvjpjlbhhs.htm#p1eqvixlmp88wdn11axsy79wwf9w" target="_blank"&gt;2&lt;/A&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P class="xisDoc-paragraph"&gt;&amp;nbsp;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD class="xisDoc-horizontalLeft xisDoc-verticalTop"&gt;
&lt;P class="xisDoc-paragraph"&gt;&lt;CODE class="xisDoc-inlineCode"&gt;not(a&amp;gt;b)&lt;/CODE&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="xisDoc-horizontalLeft xisDoc-verticalTop"&gt;
&lt;P class="xisDoc-paragraph"&gt;∘ or NOT&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P class="xisDoc-paragraph"&gt;&amp;nbsp;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P class="xisDoc-paragraph"&gt;&amp;nbsp;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="xisDoc-horizontalLeft xisDoc-verticalTop"&gt;
&lt;P class="xisDoc-paragraph"&gt;~ or NOT&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P class="xisDoc-paragraph"&gt;&amp;nbsp;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P class="xisDoc-paragraph"&gt;&amp;nbsp;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="3" class="xisDoc-legend"&gt;&lt;SPAN class="xisDoc-legendRefSymbol"&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;The symbol that you use for OR depends on your operating environment.&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="3" class="xisDoc-legend"&gt;&lt;SPAN class="xisDoc-legendRefSymbol"&gt;2&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;The symbol that you use for NOT depends on your operating environment.&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Fri, 05 Aug 2022 19:21:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-Logical-Operator-for-NOT-BETWEEN-in-SAS/m-p/827435#M326847</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-08-05T19:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: What is Logical Operator  for  NOT BETWEEN in SAS ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-Logical-Operator-for-NOT-BETWEEN-in-SAS/m-p/827437#M326848</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;I am curious if there is any way we can get rid of this naughty 'NOT' too in the code&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The language is set up to do certain things in certain ways. Why do you want to avoid the designed way to do things? Why is having NOT in your code even an issue? (And others have shown methods of doing this without using NOT)&lt;/P&gt;</description>
      <pubDate>Fri, 05 Aug 2022 19:56:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-Logical-Operator-for-NOT-BETWEEN-in-SAS/m-p/827437#M326848</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-08-05T19:56:38Z</dc:date>
    </item>
    <item>
      <title>Re: What is Logical Operator  for  NOT BETWEEN in SAS ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-Logical-Operator-for-NOT-BETWEEN-in-SAS/m-p/827438#M326849</link>
      <description>&lt;P&gt;Be happy that you&amp;nbsp;&lt;EM&gt;can&lt;/EM&gt; use words. Special characters are often not available on different platforms; the 26 characters are always there, and never cause unexpected issues. Just see what happens when you use &amp;lt;&amp;gt; in SAS instead of "ne".&lt;/P&gt;</description>
      <pubDate>Fri, 05 Aug 2022 19:49:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-Logical-Operator-for-NOT-BETWEEN-in-SAS/m-p/827438#M326849</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-08-05T19:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: What is Logical Operator  for  NOT BETWEEN in SAS ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-Logical-Operator-for-NOT-BETWEEN-in-SAS/m-p/827469#M326870</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;NOT ('01AUG2022'D &amp;lt;= birthdate &amp;lt;= '05AUG2022'D)

birthdate &amp;lt; '01AUG2022'D &amp;amp; birthdate &amp;gt;'05AUG2022'D&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Two options...first is easier to understand.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I hope option 2 should be "OR", not "&amp;amp;"&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;birthdate &amp;lt; '01AUG2022'D OR birthdate &amp;gt;'05AUG2022'D&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Aug 2022 17:21:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-Logical-Operator-for-NOT-BETWEEN-in-SAS/m-p/827469#M326870</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2022-08-06T17:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: What is Logical Operator  for  NOT BETWEEN in SAS ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-Logical-Operator-for-NOT-BETWEEN-in-SAS/m-p/827470#M326871</link>
      <description>&lt;P&gt;You could also let SAS tell you how it translates it.&lt;/P&gt;
&lt;PRE&gt;2568  data test;
2569    set sashelp.class;
2570    where not (13 &amp;lt;= age &amp;lt;= 14) ;
2571  run;

NOTE: There were 12 observations read from the data set SASHELP.CLASS.
      WHERE  not (age&amp;gt;=13 and age&amp;lt;=14);
NOTE: The data set WORK.TEST has 12 observations and 5 variables.
&lt;/PRE&gt;
&lt;P&gt;So if you apply &lt;A href="https://en.wikipedia.org/wiki/De_Morgan%27s_laws" target="_self"&gt;De Morgan's Law&lt;/A&gt;&amp;nbsp;you get one of these:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;WHERE not (age&amp;gt;=13) or not (age&amp;lt;=14);
WHERE (age&amp;lt;13) or (age&amp;gt;14);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 06 Aug 2022 17:39:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-Logical-Operator-for-NOT-BETWEEN-in-SAS/m-p/827470#M326871</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-08-06T17:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: What is Logical Operator  for  NOT BETWEEN in SAS ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-Logical-Operator-for-NOT-BETWEEN-in-SAS/m-p/827657#M326934</link>
      <description>&lt;P&gt;Probably, which is why the NOT is much easier &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Aug 2022 17:35:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-Logical-Operator-for-NOT-BETWEEN-in-SAS/m-p/827657#M326934</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-08-08T17:35:42Z</dc:date>
    </item>
  </channel>
</rss>

