<?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 Proc Summary Output - Recoding . to blanks in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-Summary-Output-Recoding-to-blanks/m-p/637034#M189335</link>
    <description>&lt;P&gt;One of my Proc Summary groupings includes a SAS Date variable named PAY_DATA_MONTH.&amp;nbsp; So when I sum up to that SAS Date Level then the cell shows a . because there is no value.&amp;nbsp; Is there a way to recode these missing values . to just appear as empty white space instead?&amp;nbsp; (see the attached pic)&amp;nbsp; If not in the Proc Summary itself than in following data step?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'd appreciate any insights. Thanks in advance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC SUMMARY DATA=&amp;amp;SITE._HCR_PD;
     CLASS AREA HCRID PAY_DATA_MONTH ACTIVITY_DESCRIPTION;
	 TYPES () AREA*HCRID AREA*HCRID*PAY_DATA_MONTH AREA*HCRID*PAY_DATA_MONTH*ACTIVITY_DESCRIPTION;
     VAR PAY_AMOUNT RATE UNITS;
     OUTPUT OUT=&amp;amp;SITE._SUMS_ SUM=;
RUN;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 02 Apr 2020 19:28:47 GMT</pubDate>
    <dc:creator>buechler66</dc:creator>
    <dc:date>2020-04-02T19:28:47Z</dc:date>
    <item>
      <title>Proc Summary Output - Recoding . to blanks</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Summary-Output-Recoding-to-blanks/m-p/637034#M189335</link>
      <description>&lt;P&gt;One of my Proc Summary groupings includes a SAS Date variable named PAY_DATA_MONTH.&amp;nbsp; So when I sum up to that SAS Date Level then the cell shows a . because there is no value.&amp;nbsp; Is there a way to recode these missing values . to just appear as empty white space instead?&amp;nbsp; (see the attached pic)&amp;nbsp; If not in the Proc Summary itself than in following data step?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'd appreciate any insights. Thanks in advance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC SUMMARY DATA=&amp;amp;SITE._HCR_PD;
     CLASS AREA HCRID PAY_DATA_MONTH ACTIVITY_DESCRIPTION;
	 TYPES () AREA*HCRID AREA*HCRID*PAY_DATA_MONTH AREA*HCRID*PAY_DATA_MONTH*ACTIVITY_DESCRIPTION;
     VAR PAY_AMOUNT RATE UNITS;
     OUTPUT OUT=&amp;amp;SITE._SUMS_ SUM=;
RUN;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 02 Apr 2020 19:28:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Summary-Output-Recoding-to-blanks/m-p/637034#M189335</guid>
      <dc:creator>buechler66</dc:creator>
      <dc:date>2020-04-02T19:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Summary Output - Recoding . to blanks</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Summary-Output-Recoding-to-blanks/m-p/637041#M189339</link>
      <description>I'd handle that in whatever reporting step you're doing. If you're piping the summary output to a doc file, do it via PROC TABULATE/REPORT instead is likely the first suggestion I'd make.&lt;BR /&gt;&lt;BR /&gt;If it's just the . bothering you in the data set, change the option.&lt;BR /&gt;&lt;BR /&gt;option missing = '';</description>
      <pubDate>Thu, 02 Apr 2020 19:52:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Summary-Output-Recoding-to-blanks/m-p/637041#M189339</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-04-02T19:52:44Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Summary Output - Recoding . to blanks</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Summary-Output-Recoding-to-blanks/m-p/637042#M189340</link>
      <description>Yes, it was just the . that was bothering me.  option missing = '';  did the trick!  Thanks so much for the help!</description>
      <pubDate>Thu, 02 Apr 2020 19:56:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Summary-Output-Recoding-to-blanks/m-p/637042#M189340</guid>
      <dc:creator>buechler66</dc:creator>
      <dc:date>2020-04-02T19:56:58Z</dc:date>
    </item>
  </channel>
</rss>

