<?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: how to remove char to num conversion note in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/how-to-remove-char-to-num-conversion-note/m-p/342431#M78517</link>
    <description>&lt;PRE&gt;data demo;
A = 5;
B= '0';
c = A + input(B, 1.0);
run;&lt;BR /&gt;&lt;BR /&gt;You can't 'hide' that note without hiding lots of others.  Your best approach is to use good programming to begin with.&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 20 Mar 2017 01:47:28 GMT</pubDate>
    <dc:creator>Doc_Duke</dc:creator>
    <dc:date>2017-03-20T01:47:28Z</dc:date>
    <item>
      <title>how to remove char to num conversion note</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-remove-char-to-num-conversion-note/m-p/342428#M78516</link>
      <description>&lt;PRE&gt;data demo;
A = 5;
B= '0';
c = A + B;
run;&lt;/PRE&gt;</description>
      <pubDate>Mon, 20 Mar 2017 01:35:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-remove-char-to-num-conversion-note/m-p/342428#M78516</guid>
      <dc:creator>paddyb</dc:creator>
      <dc:date>2017-03-20T01:35:32Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove char to num conversion note</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-remove-char-to-num-conversion-note/m-p/342431#M78517</link>
      <description>&lt;PRE&gt;data demo;
A = 5;
B= '0';
c = A + input(B, 1.0);
run;&lt;BR /&gt;&lt;BR /&gt;You can't 'hide' that note without hiding lots of others.  Your best approach is to use good programming to begin with.&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Mar 2017 01:47:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-remove-char-to-num-conversion-note/m-p/342431#M78517</guid>
      <dc:creator>Doc_Duke</dc:creator>
      <dc:date>2017-03-20T01:47:28Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove char to num conversion note</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-remove-char-to-num-conversion-note/m-p/342432#M78518</link>
      <description>you are right.Thanks a lot</description>
      <pubDate>Mon, 20 Mar 2017 01:49:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-remove-char-to-num-conversion-note/m-p/342432#M78518</guid>
      <dc:creator>paddyb</dc:creator>
      <dc:date>2017-03-20T01:49:49Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove char to num conversion note</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-remove-char-to-num-conversion-note/m-p/342434#M78519</link>
      <description>&lt;P&gt;As &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13604"&gt;@Doc_Duke&lt;/a&gt; has suggested, rather than letting SAS do the conversion on the fly (resulting in a Note), use one of a number of functions to perform the conversion directly.&amp;nbsp; There are functions that go both ways numeric --&amp;gt; Character and character --&amp;gt; numeric.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The INPUT family of functions (in &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13604"&gt;@Doc_Duke&lt;/a&gt;'s example) can yield a numeric, while the PUT family of functions yields character values.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Mar 2017 01:57:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-remove-char-to-num-conversion-note/m-p/342434#M78519</guid>
      <dc:creator>ArtC</dc:creator>
      <dc:date>2017-03-20T01:57:18Z</dc:date>
    </item>
  </channel>
</rss>

