<?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: Replacing Numeric nulls with blank space in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Replacing-Numeric-nulls-with-blank-space/m-p/707909#M217437</link>
    <description>&lt;P&gt;You cannot change how missing values are stored in the dataset.&amp;nbsp; But you can use the MISSING option to change what character is used to print missing values.&lt;/P&gt;</description>
    <pubDate>Wed, 23 Dec 2020 15:50:13 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2020-12-23T15:50:13Z</dc:date>
    <item>
      <title>Replacing Numeric nulls with blank space</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-Numeric-nulls-with-blank-space/m-p/707799#M217370</link>
      <description>&lt;P&gt;Per request by the customer, the data set contains numeric nulls with a "." , but the customer wants it to be blank or null without the default numeric null of "."&amp;nbsp; I've tried options missing = ' ', but that still has the numeric null with the period.&lt;/P&gt;
&lt;P&gt;Is there another method ?&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Dec 2020 02:00:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-Numeric-nulls-with-blank-space/m-p/707799#M217370</guid>
      <dc:creator>suncawy</dc:creator>
      <dc:date>2020-12-23T02:00:21Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Numeric nulls with blank space</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-Numeric-nulls-with-blank-space/m-p/707801#M217371</link>
      <description>&lt;P&gt;Options missing should work, can you show what you've tried that didn't work. There's something else that's going on then. Can you also confirm the data type of the variables you're trying to modify?&lt;/P&gt;
&lt;P&gt;Are they all character/numeric or a mix?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/40464"&gt;@suncawy&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Per request by the customer, the data set contains numeric nulls with a "." , but the customer wants it to be blank or null without the default numeric null of "."&amp;nbsp; I've tried options missing = ' ', but that still has the numeric null with the period.&lt;/P&gt;
&lt;P&gt;Is there another method ?&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Dec 2020 02:15:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-Numeric-nulls-with-blank-space/m-p/707801#M217371</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-12-23T02:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Numeric nulls with blank space</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-Numeric-nulls-with-blank-space/m-p/707835#M217395</link>
      <description>&lt;P&gt;SAS &lt;STRONG&gt;represents &lt;/STRONG&gt;missing numeric data as dots (or as uppercase letters for special missing values).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you use&lt;FONT face="courier new,courier"&gt; options missing=' ';&amp;nbsp;&lt;/FONT&gt; then SAS &lt;STRONG&gt;represents&lt;/STRONG&gt; missing values as a space. Using the # character:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options missing='#';
data T; X=.; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ChrisNZ_0-1608702213069.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/52977i82B2531C2C5ECEDA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ChrisNZ_0-1608702213069.png" alt="ChrisNZ_0-1608702213069.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Dec 2020 05:43:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-Numeric-nulls-with-blank-space/m-p/707835#M217395</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2020-12-23T05:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Numeric nulls with blank space</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-Numeric-nulls-with-blank-space/m-p/707909#M217437</link>
      <description>&lt;P&gt;You cannot change how missing values are stored in the dataset.&amp;nbsp; But you can use the MISSING option to change what character is used to print missing values.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Dec 2020 15:50:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-Numeric-nulls-with-blank-space/m-p/707909#M217437</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-12-23T15:50:13Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Numeric nulls with blank space</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-Numeric-nulls-with-blank-space/m-p/707916#M217439</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/40464"&gt;@suncawy&lt;/a&gt;&amp;nbsp;, is it that you are delivering a SAS "dataset" with the extension&amp;nbsp;"sas7bdat" to your customer?&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Dec 2020 16:02:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-Numeric-nulls-with-blank-space/m-p/707916#M217439</guid>
      <dc:creator>PhilC</dc:creator>
      <dc:date>2020-12-23T16:02:35Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Numeric nulls with blank space</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-Numeric-nulls-with-blank-space/m-p/707920#M217442</link>
      <description>&lt;P&gt;Using this:&amp;nbsp;&amp;nbsp;OPTIONS MISSING='';&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Its showing this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="suncawy_0-1608739729022.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/52989i6E24C82200391884/image-size/medium?v=v2&amp;amp;px=400" role="button" title="suncawy_0-1608739729022.png" alt="suncawy_0-1608739729022.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Dec 2020 16:09:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-Numeric-nulls-with-blank-space/m-p/707920#M217442</guid>
      <dc:creator>suncawy</dc:creator>
      <dc:date>2020-12-23T16:09:36Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Numeric nulls with blank space</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-Numeric-nulls-with-blank-space/m-p/707921#M217443</link>
      <description>&lt;P&gt;The dataset isn't being sent to the customer.&amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;From the dataset, its creating a flat file, basically a text file.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Dec 2020 16:11:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-Numeric-nulls-with-blank-space/m-p/707921#M217443</guid>
      <dc:creator>suncawy</dc:creator>
      <dc:date>2020-12-23T16:11:57Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Numeric nulls with blank space</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-Numeric-nulls-with-blank-space/m-p/707922#M217444</link>
      <description>&lt;P&gt;What process are you using to create the flat-file?&lt;/P&gt;</description>
      <pubDate>Wed, 23 Dec 2020 16:24:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-Numeric-nulls-with-blank-space/m-p/707922#M217444</guid>
      <dc:creator>PhilC</dc:creator>
      <dc:date>2020-12-23T16:24:46Z</dc:date>
    </item>
  </channel>
</rss>

