<?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 Help with column type change in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Help-with-column-type-change/m-p/657874#M197161</link>
    <description>&lt;P&gt;I have column cust has character type and I want to change the type to numeric of the same variable.&lt;/P&gt;&lt;P&gt;data one;&lt;/P&gt;&lt;P&gt;set wes;&lt;/P&gt;&lt;P&gt;&amp;nbsp;cust = input ( cust,best8.) ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But still, in the output, I am seeing the type of cust as a character which I am expecting to be numeric.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 12 Jun 2020 04:02:23 GMT</pubDate>
    <dc:creator>kajal_30</dc:creator>
    <dc:date>2020-06-12T04:02:23Z</dc:date>
    <item>
      <title>Help with column type change</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-with-column-type-change/m-p/657874#M197161</link>
      <description>&lt;P&gt;I have column cust has character type and I want to change the type to numeric of the same variable.&lt;/P&gt;&lt;P&gt;data one;&lt;/P&gt;&lt;P&gt;set wes;&lt;/P&gt;&lt;P&gt;&amp;nbsp;cust = input ( cust,best8.) ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But still, in the output, I am seeing the type of cust as a character which I am expecting to be numeric.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jun 2020 04:02:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-with-column-type-change/m-p/657874#M197161</guid>
      <dc:creator>kajal_30</dc:creator>
      <dc:date>2020-06-12T04:02:23Z</dc:date>
    </item>
    <item>
      <title>Re: Help with column type change</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-with-column-type-change/m-p/657883#M197165</link>
      <description>&lt;P&gt;To change column type you have to assign it to a different column:\&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data one;
set wes (rename = (cust = cust_char));
 cust = input ( cust_char, best8.) ;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 12 Jun 2020 04:19:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-with-column-type-change/m-p/657883#M197165</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2020-06-12T04:19:51Z</dc:date>
    </item>
    <item>
      <title>Re: Help with column type change</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-with-column-type-change/m-p/657930#M197171</link>
      <description>&lt;P&gt;Or even:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data one (drop = CUST_CHAR);
  set WES (rename = (CUST = CUST_CHAR) );
  CUST = input ( CUST_CHAR, best8.) ;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 12 Jun 2020 06:40:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-with-column-type-change/m-p/657930#M197171</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2020-06-12T06:40:26Z</dc:date>
    </item>
    <item>
      <title>Re: Help with column type change</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-with-column-type-change/m-p/657931#M197172</link>
      <description>&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;nbsp;But still, in the output, I am seeing the type of cust as a character which I am expecting to be numeric.&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Look at the log.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Look at the log.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Look at the log.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Look at the log.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Look at the log.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;Always&lt;/STRONG&gt; look at the log. Even if there are (you think) no errors.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jun 2020 06:41:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-with-column-type-change/m-p/657931#M197172</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2020-06-12T06:41:56Z</dc:date>
    </item>
  </channel>
</rss>

