<?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 format to numeric format in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228490#M54295</link>
    <description>&lt;P&gt;Two "next steps" then to help diagnose the problem&amp;nbsp;...&amp;nbsp; First, show the area of the log that contains line 59.&amp;nbsp; It seems unusual that column 6 would begin the invalid value that is mentioned by the error message.&amp;nbsp; Second, assuming that time_to_event is actually a character field, for&amp;nbsp;_n_=1 display time_to_event in two forms just to confirm what it contains:&amp;nbsp; put time_to_event time_to_event $hex8.;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 05 Oct 2015 18:38:42 GMT</pubDate>
    <dc:creator>Astounding</dc:creator>
    <dc:date>2015-10-05T18:38:42Z</dc:date>
    <item>
      <title>Converting character format to numeric format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228475#M54289</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am brand new to SAS (am more expierenced with STATA) and am having difficulty converting character values to numeric values.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am doing survival analysis, and have a column of "time_to_event" that is in days. When I import the data to SAS from an excel sheet, all variables important in character format, which prevents the survival analysis from working.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="sasSource"&gt;Data practice;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;set work.import1;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;format tte BEST6.;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;tte=input(time_to_event, $5.);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;run;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;It generates a new SAS table, but I get an error for the conversion. The log shows the following :&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&lt;BR /&gt;&lt;DIV class="sasNote"&gt;"NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column).&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;59:6&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid numeric data, '.617' , at line 59 column 6&lt;BR /&gt;&lt;SPAN&gt;time_to_event=617 status=1 location=!!!! sex=Male age_group=&amp;lt;=20 region=Quebec histology=Diffuse astrocytoma tte=. _ERROR_=1 _N_=1"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Does anyone have any ideas how to fix this, or know a better way of going about it? There is a forum thread from 2012 about doing thsi conversion, but the all of the provided solutions produce the same error.&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 05 Oct 2015 17:40:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228475#M54289</guid>
      <dc:creator>Jordan88</dc:creator>
      <dc:date>2015-10-05T17:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: Converting character format to numeric format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228479#M54290</link>
      <description>&lt;P&gt;You're very close ... just get rid of the dollar sign:&amp;nbsp; tte = input(time_to_event, 5.);&lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2015 17:49:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228479#M54290</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2015-10-05T17:49:16Z</dc:date>
    </item>
    <item>
      <title>Re: Converting character format to numeric format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228481#M54291</link>
      <description>&lt;P&gt;Hmm... I tried that, and it it ends up with the same result but a different error:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"NOTE: Invalid argument to function INPUT at line 59 column 6.&lt;/P&gt;&lt;DIV class="sasSource"&gt;time_to_event=617 status=1 location=North sex=Male age_group=&amp;lt;=20 region=Quebec histology=Diffuse astrocytoma tte=. _ERROR_=1 _N_=1"&lt;/DIV&gt;</description>
      <pubDate>Mon, 05 Oct 2015 18:03:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228481#M54291</guid>
      <dc:creator>Jordan88</dc:creator>
      <dc:date>2015-10-05T18:03:47Z</dc:date>
    </item>
    <item>
      <title>Re: Converting character format to numeric format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228487#M54294</link>
      <description>&lt;P&gt;Check the variable type of time_to_event. Your error suggests that it may be numeric already.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2015 18:35:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228487#M54294</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2015-10-05T18:35:18Z</dc:date>
    </item>
    <item>
      <title>Re: Converting character format to numeric format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228490#M54295</link>
      <description>&lt;P&gt;Two "next steps" then to help diagnose the problem&amp;nbsp;...&amp;nbsp; First, show the area of the log that contains line 59.&amp;nbsp; It seems unusual that column 6 would begin the invalid value that is mentioned by the error message.&amp;nbsp; Second, assuming that time_to_event is actually a character field, for&amp;nbsp;_n_=1 display time_to_event in two forms just to confirm what it contains:&amp;nbsp; put time_to_event time_to_event $hex8.;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2015 18:38:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228490#M54295</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2015-10-05T18:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: Converting character format to numeric format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228517#M54300</link>
      <description>&lt;P&gt;I have attached a screenshot of the error. I also don't really know why is referring to column 7, as column 7 is histology and time_to_event is column 1.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To answer the other person's comment, the properties show time_to_event being:&lt;/P&gt;&lt;P&gt;Type: Char&lt;/P&gt;&lt;P&gt;Format: $5.&lt;BR /&gt;Informat: $5.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For the put time_to_event time_to_event $hex8.; &amp;nbsp; I'm not sure where you want me to put this. Running it on its own returns "&lt;SPAN&gt;ERROR 180-322: Statement is not valid or it is used out of proper order."&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11991i1448DE6E0120F5DC/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Error.png" title="Error.png" /&gt;</description>
      <pubDate>Mon, 05 Oct 2015 20:30:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228517#M54300</guid>
      <dc:creator>Jordan88</dc:creator>
      <dc:date>2015-10-05T20:30:24Z</dc:date>
    </item>
    <item>
      <title>Re: Converting character format to numeric format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228519#M54301</link>
      <description>&lt;P&gt;Hi. &amp;nbsp;It's good to know the variable type before using functions. &amp;nbsp;But if you don't care, you could use a CAT function with that INPUT function and SAS would give the same result whether the variable is CHAR or NUM ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;data _null_;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;format num char 10.2;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;retain x '12345' y 12345;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;char = input(cat(x),5.);&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;num = input(cat(y),5.);&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;put x= char= / y= num=;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the LOG .(no "nasty" messages) ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;191 data _null_;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;192 format num char 10.2;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;193 retain x '12345' y 12345;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;194 char = input(cat(x),5.);&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;195 num = input(cat(y),5.);&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;196 put x= char= / y= num=;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;197 run;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;x=12345 char=12345.00&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;y=12345 num=12345.00&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2015 20:32:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228519#M54301</guid>
      <dc:creator>MikeZdeb</dc:creator>
      <dc:date>2015-10-05T20:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: Converting character format to numeric format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228524#M54303</link>
      <description>&lt;P&gt;The hex format will help determine if the decimal point we are seeing is not really a decimal point but some other unprintable character.&amp;nbsp; Let's see the results you get in this DATA step ("have" should be your incoming SAS data set name):&amp;nbsp;&amp;nbsp; data _null_; set have; if _n_=1 then put time_to_event time_to_event $hex10.; else stop; run;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2015 20:44:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228524#M54303</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2015-10-05T20:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: Converting character format to numeric format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228528#M54305</link>
      <description>&lt;DIV class="sasSource"&gt;Here are the results of that data step.&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&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 data _null_;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;57 set import;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;58 if _n_=1 then put time_to_event time_to_event $hex10.;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;59 else stop;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;60 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;617 0A36313720&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: There were 2 observations read from the data set WORK.IMPORT.&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.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;61&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;62 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;74&lt;/DIV&gt;</description>
      <pubDate>Mon, 05 Oct 2015 20:56:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228528#M54305</guid>
      <dc:creator>Jordan88</dc:creator>
      <dc:date>2015-10-05T20:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: Converting character format to numeric format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228534#M54306</link>
      <description>&lt;P&gt;OK, that narrows down the scope of the problem considerably.&amp;nbsp; The "." in ".617" is not a decimal point, but is some other character.&amp;nbsp; The next question becomes, "How would you like to handle it?"&amp;nbsp; Should all the numeric values ignore the "." or should the "." be treated as if it were a decimal point?&amp;nbsp; (It might help simplify the solution if we knew whether the "." always appears at the beginning of each time_to_event, but we can code around it if the "." is only there occasionally.)&lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2015 21:10:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228534#M54306</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2015-10-05T21:10:10Z</dc:date>
    </item>
    <item>
      <title>Re: Converting character format to numeric format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228535#M54307</link>
      <description>&lt;P&gt;Interesting, I wonder why that is happening as there doesn't appear to be anything when looking at the table or the orginal excel.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But to answer your question, I do not want any decimal point as all values should be in whole days. I don't know if it is there for all values, as the log only shows the first 20 attempts and there are no decimals in the table (there are 10,000 entries), but all 20 of them are shown in the log have the decimal.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2015 21:24:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228535#M54307</guid>
      <dc:creator>Jordan88</dc:creator>
      <dc:date>2015-10-05T21:24:24Z</dc:date>
    </item>
    <item>
      <title>Re: Converting character format to numeric format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228538#M54308</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/57013"&gt;@Jordan88&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I have attached a screenshot of the error. I also don't really know why is referring to column 7, as column 7 is histology and time_to_event is column 1.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The error message is referring to the position within the line of code. In this case likely the position of the start of the Input function. It points to the first place in a line that the operation cannont be completed due to any error.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the data actually contains the quotes that is another reason for the&amp;nbsp; conversion to fail. That is why the error shows invalid numeric value '.615'&lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2015 21:56:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228538#M54308</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2015-10-05T21:56:24Z</dc:date>
    </item>
    <item>
      <title>Re: Converting character format to numeric format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228539#M54309</link>
      <description>&lt;P&gt;Oh ok, that makes sense, thank you.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And the data itself does not contain the quotes. I have attached a screenshot of the data.&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11992i1770BFC904D98179/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Error.png" title="Error.png" /&gt;</description>
      <pubDate>Mon, 05 Oct 2015 22:10:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228539#M54309</guid>
      <dc:creator>Jordan88</dc:creator>
      <dc:date>2015-10-05T22:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: Converting character format to numeric format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228543#M54311</link>
      <description>&lt;P&gt;OK, here is what I would try. &amp;nbsp;In the context of a DATA step:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;set have;&lt;/P&gt;&lt;P&gt;tte = input(compress(time_to_event, '0A'x), 5.);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That should remove the extra character, then convert what is left to numeric.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good luck!&lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2015 22:57:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228543#M54311</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2015-10-05T22:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: Converting character format to numeric format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228566#M54315</link>
      <description>Yes, thank you!&lt;BR /&gt;&lt;BR /&gt;I still don't know why there was some invisible character, but this solved it. Thanks for all your help.&lt;BR /&gt;&lt;BR /&gt;Just for the sake of learning, what does the '0A'x mean/do?</description>
      <pubDate>Tue, 06 Oct 2015 03:03:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228566#M54315</guid>
      <dc:creator>Jordan88</dc:creator>
      <dc:date>2015-10-06T03:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: Converting character format to numeric format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228619#M54318</link>
      <description>&lt;P&gt;Every character can be represented by a two-character hexadecimal code.&amp;nbsp; Your earlier experiment wrote out time_to_event in hexadecimal form, and found that the "." could be represented the hexadecimal code 0A.&amp;nbsp; So we're using that information to remove the "." with the COMPRESS function.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Oct 2015 13:21:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Converting-character-format-to-numeric-format/m-p/228619#M54318</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2015-10-06T13:21:31Z</dc:date>
    </item>
  </channel>
</rss>

