<?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 convert variable from character to numeric when there is one missing value in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-convert-variable-from-character-to-numeric-when-there-is/m-p/811021#M319873</link>
    <description>&lt;P&gt;Hi, here is the screenshot for excel spreadsheet. Could you please let me know how to handle this in proc import directly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 02 May 2022 09:47:54 GMT</pubDate>
    <dc:creator>gahlot1999</dc:creator>
    <dc:date>2022-05-02T09:47:54Z</dc:date>
    <item>
      <title>How to convert variable from character to numeric when there is one missing value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-convert-variable-from-character-to-numeric-when-there-is/m-p/810970#M319845</link>
      <description>&lt;P&gt;Data Set -&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gahlot1999_0-1651441578452.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/71058i04FDA8B2947FED1E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gahlot1999_0-1651441578452.png" alt="gahlot1999_0-1651441578452.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;How to convert this character dataset to variable. So that I can fetch data out of it....Having issue due to missing value...&lt;/P&gt;&lt;P&gt;Tried -&amp;nbsp;RFICDAT = input(RFICDAT, 10.),&amp;nbsp;RFICDAT = input(RFICDAT, 10.)&lt;/P&gt;</description>
      <pubDate>Sun, 01 May 2022 21:48:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-convert-variable-from-character-to-numeric-when-there-is/m-p/810970#M319845</guid>
      <dc:creator>gahlot1999</dc:creator>
      <dc:date>2022-05-01T21:48:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert variable from character to numeric when there is one missing value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-convert-variable-from-character-to-numeric-when-there-is/m-p/810972#M319847</link>
      <description>&lt;P&gt;Use a different variable name on the left hand side of assignment statement :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;RFICDATnum = input(RFICDAT, 10.);&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Koen&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 01 May 2022 22:09:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-convert-variable-from-character-to-numeric-when-there-is/m-p/810972#M319847</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2022-05-01T22:09:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert variable from character to numeric when there is one missing value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-convert-variable-from-character-to-numeric-when-there-is/m-p/810993#M319859</link>
      <description>&lt;P&gt;You can't change the type of a variable, you have to create a new one, as shown by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/60547"&gt;@sbxkoenk&lt;/a&gt;&amp;nbsp;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 May 2022 06:15:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-convert-variable-from-character-to-numeric-when-there-is/m-p/810993#M319859</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2022-05-02T06:15:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert variable from character to numeric when there is one missing value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-convert-variable-from-character-to-numeric-when-there-is/m-p/810995#M319861</link>
      <description>&lt;P&gt;You are importing an Excel spreadsheet where the "header row" seems to be in a non-standard location. PROC IMPORT provides options to deal with this. Please show us a screenshot of the original spreadsheet.&lt;/P&gt;
&lt;P&gt;The numbers you see are the raw values of Excel dates.&lt;/P&gt;</description>
      <pubDate>Mon, 02 May 2022 06:39:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-convert-variable-from-character-to-numeric-when-there-is/m-p/810995#M319861</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-05-02T06:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert variable from character to numeric when there is one missing value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-convert-variable-from-character-to-numeric-when-there-is/m-p/811021#M319873</link>
      <description>&lt;P&gt;Hi, here is the screenshot for excel spreadsheet. Could you please let me know how to handle this in proc import directly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 May 2022 09:47:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-convert-variable-from-character-to-numeric-when-there-is/m-p/811021#M319873</guid>
      <dc:creator>gahlot1999</dc:creator>
      <dc:date>2022-05-02T09:47:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert variable from character to numeric when there is one missing value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-convert-variable-from-character-to-numeric-when-there-is/m-p/811023#M319875</link>
      <description>&lt;P&gt;This looks straight forward. How did you import this spreadsheet (please post the complete code)?&lt;/P&gt;</description>
      <pubDate>Mon, 02 May 2022 09:46:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-convert-variable-from-character-to-numeric-when-there-is/m-p/811023#M319875</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-05-02T09:46:16Z</dc:date>
    </item>
  </channel>
</rss>

