<?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: Proc tabulate empty data in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-tabulate-empty-data/m-p/349143#M80949</link>
    <description>&lt;P&gt;Do you want to suppress the message or create a table?&lt;/P&gt;
&lt;P&gt;If you want a table provide some example data, in the form of a data step, and what the table should look like.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The only way that should be happening if OP and CL are missing for every single value of O. In which case what do you expect?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you already know that&amp;nbsp;all the values are missing then try:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;PROC TABULATE DATA = junk ;
CLASS O /missing;

VAR OP CL;
TABLES O=' ',(OP='WELCOME' Cl='NOT WELCOME')
*n=''*F=COMMA12.
/ BOX='O' ;
run;&lt;/PRE&gt;
&lt;P&gt;SUM expects at least one none missing value, N isn't quite so picky&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 11 Apr 2017 14:41:13 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2017-04-11T14:41:13Z</dc:date>
    <item>
      <title>Proc tabulate empty data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-tabulate-empty-data/m-p/348988#M80881</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am getting given below warning in proc tabulate. Can any one help me to fix this warnning.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"WARNNING : A LOGICAL PAGE CONTAINING ONLY MISSING VALUES HAS BEEN DELETED"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See the given below source :&lt;/P&gt;&lt;P&gt;PROC TABULATE DATA = ABHI NOSEPS;&lt;BR /&gt;CLASS O;&lt;BR /&gt;VAR OP CL;&lt;BR /&gt;TABLES O=' ',(OP='WELCOME' C='NOT WELCOME')&lt;BR /&gt;*SUM=''*F=COMMA12.&lt;BR /&gt;/ BOX='O' RTS=10;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;note : the reason behind this warning is OP and CL have no data(NULL values)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help me if we can find the way to overcome this warrning or we can make a OP and CL values 0, 0 for both. It will be really helpful.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2017 06:35:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-tabulate-empty-data/m-p/348988#M80881</guid>
      <dc:creator>abhityagi</dc:creator>
      <dc:date>2017-04-11T06:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: Proc tabulate empty data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-tabulate-empty-data/m-p/349000#M80890</link>
      <description>Please include missing in proc tabulate like below&lt;BR /&gt;&lt;BR /&gt;PROC TABULATE DATA = ABHI MISSING NOSEPS;</description>
      <pubDate>Tue, 11 Apr 2017 07:10:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-tabulate-empty-data/m-p/349000#M80890</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2017-04-11T07:10:17Z</dc:date>
    </item>
    <item>
      <title>Re: Proc tabulate empty data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-tabulate-empty-data/m-p/349035#M80910</link>
      <description>&lt;P&gt;Thanks for your quick response. But Adding 'MISSING' in Proc tabulate could not resolved the warnning issue. Warnning will be stil there.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2017 09:35:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-tabulate-empty-data/m-p/349035#M80910</guid>
      <dc:creator>abhityagi</dc:creator>
      <dc:date>2017-04-11T09:35:44Z</dc:date>
    </item>
    <item>
      <title>Re: Proc tabulate empty data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-tabulate-empty-data/m-p/349143#M80949</link>
      <description>&lt;P&gt;Do you want to suppress the message or create a table?&lt;/P&gt;
&lt;P&gt;If you want a table provide some example data, in the form of a data step, and what the table should look like.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The only way that should be happening if OP and CL are missing for every single value of O. In which case what do you expect?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you already know that&amp;nbsp;all the values are missing then try:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;PROC TABULATE DATA = junk ;
CLASS O /missing;

VAR OP CL;
TABLES O=' ',(OP='WELCOME' Cl='NOT WELCOME')
*n=''*F=COMMA12.
/ BOX='O' ;
run;&lt;/PRE&gt;
&lt;P&gt;SUM expects at least one none missing value, N isn't quite so picky&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2017 14:41:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-tabulate-empty-data/m-p/349143#M80949</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-04-11T14:41:13Z</dc:date>
    </item>
  </channel>
</rss>

