<?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 ERROR: Function/subroutine CMISS not found in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Function-subroutine-CMISS-not-found/m-p/342813#M78611</link>
    <description>&lt;P&gt;Why my SAS doesn't have CMISS function?&lt;/P&gt;</description>
    <pubDate>Tue, 21 Mar 2017 02:12:23 GMT</pubDate>
    <dc:creator>afiqcjohari</dc:creator>
    <dc:date>2017-03-21T02:12:23Z</dc:date>
    <item>
      <title>ERROR: Function/subroutine CMISS not found</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Function-subroutine-CMISS-not-found/m-p/342813#M78611</link>
      <description>&lt;P&gt;Why my SAS doesn't have CMISS function?&lt;/P&gt;</description>
      <pubDate>Tue, 21 Mar 2017 02:12:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Function-subroutine-CMISS-not-found/m-p/342813#M78611</guid>
      <dc:creator>afiqcjohari</dc:creator>
      <dc:date>2017-03-21T02:12:23Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Function/subroutine CMISS not found</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Function-subroutine-CMISS-not-found/m-p/342818#M78614</link>
      <description>&lt;P&gt;It appeared in version 9.2 I think.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Mar 2017 02:29:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Function-subroutine-CMISS-not-found/m-p/342818#M78614</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2017-03-21T02:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Function/subroutine CMISS not found</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Function-subroutine-CMISS-not-found/m-p/342827#M78617</link>
      <description>&lt;P&gt;Or you made a mistake somewhere else in the code or usage.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Post the full code/log and your SAS version.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Mar 2017 03:12:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Function-subroutine-CMISS-not-found/m-p/342827#M78617</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-03-21T03:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Function/subroutine CMISS not found</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Function-subroutine-CMISS-not-found/m-p/342829#M78619</link>
      <description>&lt;PRE&gt;

If you have low version sas. there is an alternative way.




data x;
input (a b c) ($);
cards;
w e .
s f d
;
run;

data want;
 set x;
 array x{*} $ _character_;
 n_miss=cmiss(of x{*});
 
 
/*alternative way*/
 _n_miss=0;
 do i=1 to dim(x);
  if missing(x{i}) then _n_miss+1;
 end;
 
 
 if _n_miss=1 then put 'xxx';
run;

proc print;run;

&lt;/PRE&gt;</description>
      <pubDate>Tue, 21 Mar 2017 03:24:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Function-subroutine-CMISS-not-found/m-p/342829#M78619</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-03-21T03:24:58Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Function/subroutine CMISS not found</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Function-subroutine-CMISS-not-found/m-p/342846#M78624</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;2142  data txn_contactlesscmiss;
2143      set db2dw.acarddet;
2144      where dTran between '01JAN2017'd and '28FEB2017'd
2145            and (cPOSMode in ('07')
2146                or (cPOSMode in ('90','02')
2147                  and cmiss(cToken, cPvder, idTReq) = 0));
ERROR: Function/subroutine CMISS not found
2148  run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I think this part of the log file you're looking for.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Mar 2017 06:12:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Function-subroutine-CMISS-not-found/m-p/342846#M78624</guid>
      <dc:creator>afiqcjohari</dc:creator>
      <dc:date>2017-03-21T06:12:24Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Function/subroutine CMISS not found</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Function-subroutine-CMISS-not-found/m-p/342847#M78625</link>
      <description>I just figured out that the server is running a 9.1 version while my desktop is on 9.3</description>
      <pubDate>Tue, 21 Mar 2017 06:14:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Function-subroutine-CMISS-not-found/m-p/342847#M78625</guid>
      <dc:creator>afiqcjohari</dc:creator>
      <dc:date>2017-03-21T06:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Function/subroutine CMISS not found</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Function-subroutine-CMISS-not-found/m-p/342855#M78627</link>
      <description>Hi Ksharp, thanks for this alternative suggestion!</description>
      <pubDate>Tue, 21 Mar 2017 06:47:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Function-subroutine-CMISS-not-found/m-p/342855#M78627</guid>
      <dc:creator>afiqcjohari</dc:creator>
      <dc:date>2017-03-21T06:47:42Z</dc:date>
    </item>
  </channel>
</rss>

