<?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: NULL RECORDS in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/NULL-RECORDS/m-p/140016#M37440</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Note that you have used the OF styntax wrong.&amp;nbsp; Since you also included commas the OF only applies to the variables listed up until the first comma.&lt;/P&gt;&lt;P&gt;So&amp;nbsp; CMISS(of A,B,C,D,E) is the same as CMISS(A,B,C,D,E) .&lt;/P&gt;&lt;P&gt;The power of the OF syntax is when you want to use variable lists or just eliminate the annoying commas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CMISS(of A B C D E) &lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;CMISS(of _ALL_)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Jun 2014 21:31:20 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2014-06-13T21:31:20Z</dc:date>
    <item>
      <title>NULL RECORDS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/NULL-RECORDS/m-p/140011#M37435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-bottom: 12pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;I Have a dataset with 5 variables a, b, c, d and e&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 12pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;I have to write a program to find out if the variable is &lt;STRONG&gt;null(individual vaaribles)&lt;/STRONG&gt; for all recs. If so, then output ‘NULL’ to Comment column.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2014 15:09:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/NULL-RECORDS/m-p/140011#M37435</guid>
      <dc:creator>rakeshvvv</dc:creator>
      <dc:date>2014-06-12T15:09:54Z</dc:date>
    </item>
    <item>
      <title>Re: NULL RECORDS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/NULL-RECORDS/m-p/140012#M37436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;null for all fields or null for any? are all variables numeric? char? mix?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2014 15:15:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/NULL-RECORDS/m-p/140012#M37436</guid>
      <dc:creator>Jchapman</dc:creator>
      <dc:date>2014-06-12T15:15:16Z</dc:date>
    </item>
    <item>
      <title>Re: NULL RECORDS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/NULL-RECORDS/m-p/140013#M37437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Null for any and variables are mix.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2014 15:18:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/NULL-RECORDS/m-p/140013#M37437</guid>
      <dc:creator>rakeshvvv</dc:creator>
      <dc:date>2014-06-12T15:18:52Z</dc:date>
    </item>
    <item>
      <title>Re: NULL RECORDS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/NULL-RECORDS/m-p/140014#M37438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check out CMISS function.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2014 15:27:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/NULL-RECORDS/m-p/140014#M37438</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2014-06-12T15:27:08Z</dc:date>
    </item>
    <item>
      <title>Re: NULL RECORDS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/NULL-RECORDS/m-p/140015#M37439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;set have;&lt;/P&gt;&lt;P&gt;if cmiss(of a,b,c,d,e)=5 then comment='NULL';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2014 15:31:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/NULL-RECORDS/m-p/140015#M37439</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2014-06-12T15:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: NULL RECORDS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/NULL-RECORDS/m-p/140016#M37440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Note that you have used the OF styntax wrong.&amp;nbsp; Since you also included commas the OF only applies to the variables listed up until the first comma.&lt;/P&gt;&lt;P&gt;So&amp;nbsp; CMISS(of A,B,C,D,E) is the same as CMISS(A,B,C,D,E) .&lt;/P&gt;&lt;P&gt;The power of the OF syntax is when you want to use variable lists or just eliminate the annoying commas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CMISS(of A B C D E) &lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;CMISS(of _ALL_)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jun 2014 21:31:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/NULL-RECORDS/m-p/140016#M37440</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2014-06-13T21:31:20Z</dc:date>
    </item>
  </channel>
</rss>

