<?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: Converting character to numeric for dummies in SAS Software for Learning Community</title>
    <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Converting-character-to-numeric-for-dummies/m-p/246530#M3</link>
    <description>&lt;P&gt;&lt;EM&gt;Editor's Note: This post is among the most visited in these forums! In addition to the help provided below, here's a tutorial that walks you through what to do in about 9 minutes:&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;div class="video-embed-center video-embed"&gt;&lt;iframe class="embedly-embed" src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FKXCygvFrJqY%3Flist%3DPLVV6eZFA22QwrXd6nSDU18E6XgXSMOs87&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DKXCygvFrJqY&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FKXCygvFrJqY%2Fhqdefault.jpg&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" width="400" height="225" scrolling="no" title="SAS Tutorial | How to convert character to numeric in SAS" frameborder="0" allow="autoplay; fullscreen; encrypted-media; picture-in-picture;" allowfullscreen="true"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your code is correct, with one major issue, you can't convert a variable from text to numeric and keep the same name.&lt;/P&gt;
&lt;P&gt;That would be changing the variable type on the fly and SAS doesn't support that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So...either rename the original variable on your SET statement or your calculated variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;kill_wt2 = input(kill_wt, best12.)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This &lt;A href="http://support.sas.com/kb/24/590.html" target="_self"&gt;SAS Note&lt;/A&gt; contains lots of helpful advice for converting data types in SAS:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT size="3"&gt;&lt;A href="http://support.sas.com/kb/24/590.html" target="_self"&gt;Sample&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;I&gt;24590:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/I&gt;Convert variable values from character to numeric or from numeric to character&lt;/A&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
    <pubDate>Tue, 27 Jul 2021 20:15:05 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2021-07-27T20:15:05Z</dc:date>
    <item>
      <title>Converting character to numeric for dummies</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Converting-character-to-numeric-for-dummies/m-p/246528#M2</link>
      <description>&lt;P&gt;I have a column of data with the following attributes:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Data Set Name: WORK.IMPORT&lt;/P&gt;&lt;P&gt;Variable: Kill_wt&lt;/P&gt;&lt;P&gt;Type: Char&lt;/P&gt;&lt;P&gt;Len: 14&lt;/P&gt;&lt;P&gt;Format: $14&lt;/P&gt;&lt;P&gt;Informat: $14&lt;/P&gt;&lt;P&gt;Label: Kill wt&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;These data are continuous numerical data, but SAS doesn't see it this way. I tried the following command from a Youtube video to try and correct this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data WORK.IMPORT2; set WORK.IMPORT;&lt;BR /&gt;* Convert Kill_wt from character to numeric;&lt;BR /&gt;Kill_wt = input(Kill_wt, best12.);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;No errors show up when I run this, but nothing changes. How can I change the format/informat for "Kill_wt" from $14(character) to BEST12(this is what all my numerical data in the set are set as)? Please explain it to me like I have only been using SAS for a week (I have).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2016 04:33:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Converting-character-to-numeric-for-dummies/m-p/246528#M2</guid>
      <dc:creator>jpelot</dc:creator>
      <dc:date>2016-01-28T04:33:51Z</dc:date>
    </item>
    <item>
      <title>Re: Converting character to numeric for dummies</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Converting-character-to-numeric-for-dummies/m-p/246530#M3</link>
      <description>&lt;P&gt;&lt;EM&gt;Editor's Note: This post is among the most visited in these forums! In addition to the help provided below, here's a tutorial that walks you through what to do in about 9 minutes:&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;div class="video-embed-center video-embed"&gt;&lt;iframe class="embedly-embed" src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FKXCygvFrJqY%3Flist%3DPLVV6eZFA22QwrXd6nSDU18E6XgXSMOs87&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DKXCygvFrJqY&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FKXCygvFrJqY%2Fhqdefault.jpg&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" width="400" height="225" scrolling="no" title="SAS Tutorial | How to convert character to numeric in SAS" frameborder="0" allow="autoplay; fullscreen; encrypted-media; picture-in-picture;" allowfullscreen="true"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your code is correct, with one major issue, you can't convert a variable from text to numeric and keep the same name.&lt;/P&gt;
&lt;P&gt;That would be changing the variable type on the fly and SAS doesn't support that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So...either rename the original variable on your SET statement or your calculated variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;kill_wt2 = input(kill_wt, best12.)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This &lt;A href="http://support.sas.com/kb/24/590.html" target="_self"&gt;SAS Note&lt;/A&gt; contains lots of helpful advice for converting data types in SAS:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT size="3"&gt;&lt;A href="http://support.sas.com/kb/24/590.html" target="_self"&gt;Sample&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;I&gt;24590:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/I&gt;Convert variable values from character to numeric or from numeric to character&lt;/A&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Tue, 27 Jul 2021 20:15:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Converting-character-to-numeric-for-dummies/m-p/246530#M3</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-07-27T20:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: Converting character to numeric for dummies</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Converting-character-to-numeric-for-dummies/m-p/246533#M4</link>
      <description>&lt;P&gt;Thanks Reeza, but I tried that to no avail. Any other ideas? Could it be how I imported the data from .xls?&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2016 04:53:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Converting-character-to-numeric-for-dummies/m-p/246533#M4</guid>
      <dc:creator>jpelot</dc:creator>
      <dc:date>2016-01-28T04:53:28Z</dc:date>
    </item>
    <item>
      <title>Re: Converting character to numeric for dummies</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Converting-character-to-numeric-for-dummies/m-p/246535#M5</link>
      <description>&lt;P&gt;Post your code, log and proc contents from new data set. That should have worked.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2016 04:55:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Converting-character-to-numeric-for-dummies/m-p/246535#M5</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-01-28T04:55:30Z</dc:date>
    </item>
    <item>
      <title>Re: Converting character to numeric for dummies</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Converting-character-to-numeric-for-dummies/m-p/246536#M6</link>
      <description>&lt;P&gt;/* Generated Code (IMPORT) */&lt;BR /&gt;/* Source File: Aspirin field trial.xls */&lt;BR /&gt;/* Source Path: /folders/myfolders */&lt;BR /&gt;/* Code generated on: Thursday, January 28, 2016 3:26:09 AM */&lt;/P&gt;&lt;P&gt;%web_drop_table(WORK.IMPORT);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;FILENAME REFFILE "/folders/myfolders/Aspirin field trial.xls" TERMSTR=CR;&lt;/P&gt;&lt;P&gt;PROC IMPORT DATAFILE=REFFILE&lt;BR /&gt;DBMS=XLS&lt;BR /&gt;OUT=WORK.IMPORT;&lt;BR /&gt;GETNAMES=YES;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;PROC CONTENTS DATA=WORK.IMPORT; RUN;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;%web_open_table(WORK.IMPORT);&lt;/P&gt;&lt;P&gt;data WORK.IMPORT2; set WORK.IMPORT;&lt;BR /&gt;* Convert kill_wt from character to numeric;&lt;BR /&gt;Lung_wt2 = input(Lung_wt, best9.);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="dijitContentPane dijitBorderContainer-child dijitBorderContainer-dijitContentPane dijitBorderContainerPane dijitAlignCenter dijitContentPaneSingleChild"&gt;&lt;DIV class="dijitBorderContainer dijitContainer row-fluid dijitLayoutContainer"&gt;&lt;DIV class="dijitContentPane dijitAlignCenter dijitContentPaneSingleChild dijitBorderContainer-child dijitBorderContainer-dijitContentPane dijitBorderContainerPane"&gt;&lt;DIV class="tabs dijitBorderContainer dijitContainer dojoDndTarget dijitLayoutContainer sasStudioTabsParentContainer dojoDndContainerOver"&gt;&lt;DIV class="dijitTabContainer dijitTabContainerTop dijitContainer dijitLayoutContainer tabStrip-disabled sasStudioTabsTabContainer sasStudioTabsTabContainerVertical sasStudioTabsTop dijitBorderContainer-child dijitBorderContainer-dijitTabContainerTop dijitBorderContainerPane dijitAlignCenter"&gt;&lt;DIV class="dijitTabPaneWrapper dijitTabContainerTop-container dijitAlignCenter"&gt;&lt;DIV class="dijitTabContainerTopChildWrapper dijitVisible"&gt;&lt;DIV class="dijitBorderContainer dijitContainer sasStudioTabsTabContainerChild dijitTabPane dijitTabContainerTop-child dijitTabContainerTop-dijitBorderContainer dijitLayoutContainer"&gt;&lt;DIV class="dijitBorderContainer dijitContainer dojoDndTarget dijitBorderContainer-child dijitBorderContainer-dijitBorderContainer dijitBorderContainerPane dijitAlignCenter dijitLayoutContainer dojoDndContainerOver"&gt;&lt;DIV class="dijitTabContainer dijitTabContainerTop dijitContainer dijitLayoutContainer tabStrip-disabled sasSuiteTabs dijitBorderContainer-child dijitBorderContainer-dijitTabContainerTop dijitBorderContainerPane dijitAlignCenter"&gt;&lt;DIV class="dijitTabPaneWrapper dijitTabContainerTop-container dijitAlignCenter"&gt;&lt;DIV class="dijitTabContainerTopChildWrapper dijitVisible"&gt;&lt;DIV class="dijitBorderContainer dijitContainer dijitTabPane dijitTabContainerTop-child dijitTabContainerTop-dijitBorderContainer dijitLayoutContainer"&gt;&lt;DIV class="dijitContentPane dijitBorderContainer-child dijitBorderContainer-dijitContentPane dijitBorderContainerPane dijitAlignCenter"&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;55&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;56 /* Generated Code (IMPORT) */&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;57 /* Source File: Aspirin field trial.xls */&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;58 /* Source Path: /folders/myfolders */&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;59 /* Code generated on: Thursday, January 28, 2016 3:26:09 AM */&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;60&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;61 %web_drop_table(WORK.IMPORT);&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Table WORK.IMPORT has been dropped.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;62&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;63&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;64 FILENAME REFFILE "/folders/myfolders/Aspirin field trial.xls" TERMSTR=CR;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;65&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;66 PROC IMPORT DATAFILE=REFFILE&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;67 DBMS=XLS&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;68 OUT=WORK.IMPORT;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;69 GETNAMES=YES;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;70 RUN;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable Name Change. Ear tag -&amp;gt; Ear_tag&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable Name Change. Entry wt -&amp;gt; Entry_wt&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable Name Change. Treat d1 -&amp;gt; Treat_d1&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable Name Change. Treat d3 -&amp;gt; Treat_d3&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable Name Change. Treat d6 -&amp;gt; Treat_d6&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable Name Change. Lung wt -&amp;gt; Lung_wt&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable Name Change. Kill wt -&amp;gt; Kill_wt&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The import data set has 244 observations and 21 variables.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: WORK.IMPORT data set was successfully created.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE IMPORT used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.06 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.04 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;71&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;72 PROC CONTENTS DATA=WORK.IMPORT; RUN;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE CONTENTS used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.18 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.18 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;73&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;74&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;75 %web_open_table(WORK.IMPORT);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;76&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;77 data WORK.IMPORT2; set WORK.IMPORT;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;78 * Convert kill_wt from character to numeric;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;79 Lung_wt2 = input(Lung_wt, best9.);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;80 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: There were 244 observations read from the data set WORK.IMPORT.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The data set WORK.IMPORT2 has 244 observations and 22 variables.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: DATA statement used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.02 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.02 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;81&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;82&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;83&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;84&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;85 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;97&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="dijitContentPane statusBar dijitBorderContainer-child dijitBorderContainer-dijitContentPane dijitBorderContainerPane dijitAlignBottom"&gt;&lt;SPAN&gt;&lt;SPAN class="statusBarMessage"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="dijitContentPane statusBar dijitBorderContainer-child dijitBorderContainer-dijitContentPane dijitBorderContainerPane dijitAlignBottom"&gt;&lt;SPAN&gt;PROC SQL;&lt;BR /&gt;CREATE TABLE WORK.query AS&lt;BR /&gt;SELECT Ear_tag , Entry_wt , Gender , 'Cast'n , DH , Treat_d1 , Treat_d3 , Treat_d6 , Lung_wt , Kill_wt , 'Group'n , ADG , Fibrin , Fibrosis , Lesion , Plant , Feedlot , S_3MI_D0 , S_3MI_D3 , S_3MI_D6 , R_3MI FROM WORK.IMPORT;&lt;BR /&gt;RUN;&lt;BR /&gt;QUIT;&lt;BR /&gt;&lt;BR /&gt;PROC DATASETS NOLIST NODETAILS;&lt;BR /&gt;CONTENTS DATA=WORK.query OUT=WORK.details;&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;PROC PRINT DATA=WORK.details;&lt;BR /&gt;RUN;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="dijitContentPane statusBar dijitBorderContainer-child dijitBorderContainer-dijitContentPane dijitBorderContainerPane dijitAlignBottom"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="dijitContentPane statusBar dijitBorderContainer-child dijitBorderContainer-dijitContentPane dijitBorderContainerPane dijitAlignBottom"&gt;&lt;SPAN&gt;I'm not sure where my proc contents are, but hopefully this helps.&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 28 Jan 2016 05:00:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Converting-character-to-numeric-for-dummies/m-p/246536#M6</guid>
      <dc:creator>jpelot</dc:creator>
      <dc:date>2016-01-28T05:00:56Z</dc:date>
    </item>
    <item>
      <title>Re: Converting character to numeric for dummies</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Converting-character-to-numeric-for-dummies/m-p/246539#M7</link>
      <description>&lt;P&gt;Your last step references import not the new data set you created, import2.&lt;/P&gt;
&lt;P&gt;Change it to refer to import2 and change the select to include lung_wt2.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Basically you created the correct dataset but didn't use it in your next steps, but went back to the original dataset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Manually check the data set import2 -&amp;gt; open it in the editor.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2016 05:07:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Converting-character-to-numeric-for-dummies/m-p/246539#M7</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-01-28T05:07:11Z</dc:date>
    </item>
    <item>
      <title>Re: Converting character to numeric for dummies</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Converting-character-to-numeric-for-dummies/m-p/246542#M8</link>
      <description>I hate to ask this, you have been so patient and helpful, but which step am I changing to import2?</description>
      <pubDate>Thu, 28 Jan 2016 05:15:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Converting-character-to-numeric-for-dummies/m-p/246542#M8</guid>
      <dc:creator>jpelot</dc:creator>
      <dc:date>2016-01-28T05:15:43Z</dc:date>
    </item>
    <item>
      <title>Re: Converting character to numeric for dummies</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Converting-character-to-numeric-for-dummies/m-p/246543#M9</link>
      <description>&lt;P&gt;proc sql, the last step.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2016 05:17:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Converting-character-to-numeric-for-dummies/m-p/246543#M9</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-01-28T05:17:10Z</dc:date>
    </item>
  </channel>
</rss>

