<?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 how  to list the temporary variable negative logical value in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/how-to-list-the-temporary-variable-negative-logical-value/m-p/740603#M231387</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data work.all;
  merge apple.emp_name (in = emp_n)
        apple.emp_dept (in = emp_d);
  by empid;
  file print;
  put NOT emp_d=;
  run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I code like above, but it doesn't work , the result is the logical value of the temporary emp_d ,not the 'not emp_d' , how should I do ?&lt;/P&gt;</description>
    <pubDate>Tue, 11 May 2021 20:09:41 GMT</pubDate>
    <dc:creator>tianerhu</dc:creator>
    <dc:date>2021-05-11T20:09:41Z</dc:date>
    <item>
      <title>how  to list the temporary variable negative logical value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-list-the-temporary-variable-negative-logical-value/m-p/740603#M231387</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data work.all;
  merge apple.emp_name (in = emp_n)
        apple.emp_dept (in = emp_d);
  by empid;
  file print;
  put NOT emp_d=;
  run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I code like above, but it doesn't work , the result is the logical value of the temporary emp_d ,not the 'not emp_d' , how should I do ?&lt;/P&gt;</description>
      <pubDate>Tue, 11 May 2021 20:09:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-list-the-temporary-variable-negative-logical-value/m-p/740603#M231387</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2021-05-11T20:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: how  to list the temporary variable negative logical value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-list-the-temporary-variable-negative-logical-value/m-p/740609#M231390</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data work.all;
  merge apple.emp_name (in = emp_n)
        apple.emp_dept (in = emp_d);
  by empid;
  file print;
not_emp_d=(not emp_d);
  put NOT_emp_d=;
  run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 11 May 2021 20:33:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-list-the-temporary-variable-negative-logical-value/m-p/740609#M231390</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-05-11T20:33:19Z</dc:date>
    </item>
    <item>
      <title>Re: how  to list the temporary variable negative logical value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-list-the-temporary-variable-negative-logical-value/m-p/740614#M231394</link>
      <description>&lt;P&gt;Thank you for your help.&lt;/P&gt;</description>
      <pubDate>Tue, 11 May 2021 20:56:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-list-the-temporary-variable-negative-logical-value/m-p/740614#M231394</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2021-05-11T20:56:50Z</dc:date>
    </item>
    <item>
      <title>Re: how  to list the temporary variable negative logical value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-list-the-temporary-variable-negative-logical-value/m-p/740618#M231396</link>
      <description>&lt;P&gt;the "not emp_d " is a expression ,not a variable , here we need a variable , so have the expression ---not emp_d assigned to a variable , then the code works . Thanks again.&lt;/P&gt;</description>
      <pubDate>Tue, 11 May 2021 21:10:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-list-the-temporary-variable-negative-logical-value/m-p/740618#M231396</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2021-05-11T21:10:03Z</dc:date>
    </item>
  </channel>
</rss>

