<?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 Report - force to show all across values in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-force-to-show-all-across-values/m-p/674161#M202953</link>
    <description>ah it was so easy, any thanks @ghosht!!</description>
    <pubDate>Mon, 03 Aug 2020 15:22:32 GMT</pubDate>
    <dc:creator>MART1</dc:creator>
    <dc:date>2020-08-03T15:22:32Z</dc:date>
    <item>
      <title>Proc Report - force to show all across values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-force-to-show-all-across-values/m-p/674139#M202945</link>
      <description>&lt;P&gt;Hello everyone&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm trying to display two rows in Proc Report (across) as headers; however, if the cell for one row does not contain any data,&amp;nbsp;the value from the other row won't be displayed either.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hopefully the below example will explain it better:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data TEST;                                                                                                                            
   input ENTRY $ WD DAY VALUE;                                                                                                                 
   datalines; 

E1 -1 NULL 12
E1 01 20200803 51
E1 02 20200804 45
E1 03 20200805 15
E1 04 20200806 1
E1 09 2020081 32
E1 10 20200814 11
E1 11 20200817 65
;
run;


proc report data=TEST nowd;
column  ENTRY  WD, DAY, VALUE;
	define WD / 'Working Day' across NOZERO ORDER=DATA;
	define DAY /'' across;
	define ENTRY / group 'ENTRY';
	define VALUE / '' group;

quit;
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The report won't show WD=&amp;nbsp;-1 because the correspondent DAY is null.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How can I force it to show it anyway?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many thanks&lt;/P&gt;</description>
      <pubDate>Mon, 03 Aug 2020 14:26:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-force-to-show-all-across-values/m-p/674139#M202945</guid>
      <dc:creator>MART1</dc:creator>
      <dc:date>2020-08-03T14:26:19Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report - force to show all across values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-force-to-show-all-across-values/m-p/674145#M202947</link>
      <description>&lt;P&gt;Just add missing to Proc report&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc report data=TEST nowd missing;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 03 Aug 2020 14:34:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-force-to-show-all-across-values/m-p/674145#M202947</guid>
      <dc:creator>ghosh</dc:creator>
      <dc:date>2020-08-03T14:34:17Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report - force to show all across values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-force-to-show-all-across-values/m-p/674161#M202953</link>
      <description>ah it was so easy, any thanks @ghosht!!</description>
      <pubDate>Mon, 03 Aug 2020 15:22:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-force-to-show-all-across-values/m-p/674161#M202953</guid>
      <dc:creator>MART1</dc:creator>
      <dc:date>2020-08-03T15:22:32Z</dc:date>
    </item>
  </channel>
</rss>

