<?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 in (.) mean? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/What-is-in-mean/m-p/865092#M341612</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;not missing(adj_fac)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;works too. There are many ways to do this.&lt;/P&gt;</description>
    <pubDate>Sun, 19 Mar 2023 13:19:11 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2023-03-19T13:19:11Z</dc:date>
    <item>
      <title>What is in (.) mean?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-in-mean/m-p/865089#M341609</link>
      <description>&lt;P&gt;trying to understand my mate's code. I have never seen this before but what does &lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;in (.)&lt;/FONT&gt;&lt;/STRONG&gt; mean?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Nietzsche_1-1679228043112.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/81755iC80AE7DE65336BF1/image-size/large?v=v2&amp;amp;px=999" role="button" title="Nietzsche_1-1679228043112.png" alt="Nietzsche_1-1679228043112.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Mar 2023 12:16:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-in-mean/m-p/865089#M341609</guid>
      <dc:creator>Nietzsche</dc:creator>
      <dc:date>2023-03-19T12:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: What is in (.) mean?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-in-mean/m-p/865090#M341610</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;if adj_fac not in (.)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;is equal to&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;if adj_fac ne .&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Maybe someone did not remember the mnemonic for "not equal" &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Mar 2023 12:19:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-in-mean/m-p/865090#M341610</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2023-03-19T12:19:56Z</dc:date>
    </item>
    <item>
      <title>Re: What is in (.) mean?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-in-mean/m-p/865091#M341611</link>
      <description>&lt;P&gt;I see. why not just not missing? so much easier to read.&lt;/P&gt;</description>
      <pubDate>Sun, 19 Mar 2023 12:28:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-in-mean/m-p/865091#M341611</guid>
      <dc:creator>Nietzsche</dc:creator>
      <dc:date>2023-03-19T12:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: What is in (.) mean?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-in-mean/m-p/865092#M341612</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;not missing(adj_fac)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;works too. There are many ways to do this.&lt;/P&gt;</description>
      <pubDate>Sun, 19 Mar 2023 13:19:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-in-mean/m-p/865092#M341612</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-03-19T13:19:11Z</dc:date>
    </item>
    <item>
      <title>Re: What is in (.) mean?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-in-mean/m-p/865094#M341613</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;if adj_fac ne .&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;is less typing than&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;if not missing(adj_fac)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Good programmers are lazy (Linus Torvalds) &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Mar 2023 13:22:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-in-mean/m-p/865094#M341613</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2023-03-19T13:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: What is in (.) mean?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-in-mean/m-p/865102#M341618</link>
      <description>&lt;P&gt;They probably used to have other values in the list of excluded values.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;if adj_fac not in (. 0 -1 999) then ...&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And they removed the others and did not bother to change from the IN operator to equality operator once there was only one value left in the list.&lt;/P&gt;</description>
      <pubDate>Sun, 19 Mar 2023 16:56:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-in-mean/m-p/865102#M341618</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-03-19T16:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: What is in (.) mean?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-in-mean/m-p/865105#M341620</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/431484"&gt;@Nietzsche&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I see. why not just not missing? so much easier to read.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;For any question relating to "WHY" you must ask the programmer.&lt;/P&gt;
&lt;P&gt;I can see a scenario where a prior version of the programming used a list of values with or without the missing. Then needs changed and the list was reduced or replaced leaving the . as the only list.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have code where I have some code like " IN ('one value') " instead of "variable = 'one value' " because history has shown me that I am very likely to have to add values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Mar 2023 18:35:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-in-mean/m-p/865105#M341620</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-03-19T18:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: What is in (.) mean?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-in-mean/m-p/865110#M341623</link>
      <description>&lt;P&gt;But those two are not equivalent.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;1    data test;
2      adj_fac = .B;
3      if adj_fac ne . then x1=1;
4      if not missing(adj_fac) then x2=1;
5      put _all_;
6    run;

adj_fac=B x1=1 x2=. _ERROR_=0 _N_=1
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Bart&lt;/P&gt;</description>
      <pubDate>Sun, 19 Mar 2023 20:13:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-in-mean/m-p/865110#M341623</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2023-03-19T20:13:03Z</dc:date>
    </item>
    <item>
      <title>Re: What is in (.) mean?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-in-mean/m-p/865111#M341624</link>
      <description>&lt;P&gt;..or:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;if adj_fac &amp;gt; .z then ...&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Bart&lt;/P&gt;</description>
      <pubDate>Sun, 19 Mar 2023 20:16:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-in-mean/m-p/865111#M341624</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2023-03-19T20:16:05Z</dc:date>
    </item>
    <item>
      <title>Re: What is in (.) mean?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-in-mean/m-p/865114#M341626</link>
      <description>&lt;P&gt;it means adj_fac was not missing. I wouldn't have written it that way. I prefer the missing function like others have mentioned here.&lt;/P&gt;</description>
      <pubDate>Sun, 19 Mar 2023 20:35:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-in-mean/m-p/865114#M341626</guid>
      <dc:creator>tarheel13</dc:creator>
      <dc:date>2023-03-19T20:35:20Z</dc:date>
    </item>
  </channel>
</rss>

