<?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: Numeric to character conversion in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Numeric-to-character-conversion/m-p/154655#M262757</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The . for missing is a system option. Inside a dataset I wouldn't worry about it. For any report procedure or data export before the procedure use:&lt;/P&gt;&lt;P&gt;options missing=' '; to have a single space instead of the period appear. Reset to default afterwards using option missing='.';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are really worried about the appearance within a data set then use the same option missing=' ';&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Sep 2014 17:48:43 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2014-09-22T17:48:43Z</dc:date>
    <item>
      <title>Numeric to character conversion</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Numeric-to-character-conversion/m-p/154653#M262755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have the following data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Age&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Title&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Tom&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Analyst&lt;/P&gt;&lt;P&gt;Mike&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VicePresident&lt;/P&gt;&lt;P&gt;John&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AccountManager&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;....and I need it to look like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Age&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Title&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Tom&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Analyst&lt;/P&gt;&lt;P&gt;Mike&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VicePresident&lt;/P&gt;&lt;P&gt;John&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AccountManager&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By design, the variable Age is numeric and only holds blanks. I need to eliminate the dots associated with numeric blanks, such that the Age variable is completely clear (ie. the Age variable blanks need to look like numeric blanks). The only way I know to do this, however, is to introduce a new variable that contains Age's values and recast the new variable as a character and set it to blank with an if statement. &lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;It is imperative, however, that I keep Age variable in the same location within the dataset (ie between the Name and Title variables),&lt;/STRONG&gt;&lt;/SPAN&gt; so I am not able to get there with what I know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2014 17:38:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Numeric-to-character-conversion/m-p/154653#M262755</guid>
      <dc:creator>maroulator</dc:creator>
      <dc:date>2014-09-22T17:38:14Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric to character conversion</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Numeric-to-character-conversion/m-p/154654#M262756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;options missing='';&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2014 17:47:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Numeric-to-character-conversion/m-p/154654#M262756</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2014-09-22T17:47:19Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric to character conversion</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Numeric-to-character-conversion/m-p/154655#M262757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The . for missing is a system option. Inside a dataset I wouldn't worry about it. For any report procedure or data export before the procedure use:&lt;/P&gt;&lt;P&gt;options missing=' '; to have a single space instead of the period appear. Reset to default afterwards using option missing='.';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are really worried about the appearance within a data set then use the same option missing=' ';&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2014 17:48:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Numeric-to-character-conversion/m-p/154655#M262757</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2014-09-22T17:48:43Z</dc:date>
    </item>
  </channel>
</rss>

