<?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 keep same name - change var from char to numeric.  Missing type an issue in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51276#M14057</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the heads up.&amp;nbsp; I'll check.&amp;nbsp; Maybe the @0090 etc will help designate the start of a new var ...&amp;nbsp; probably not!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just trying to avoid the double name convention - reading in 1 var as character and renaming it to a numeric.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Aug 2011 14:50:48 GMT</pubDate>
    <dc:creator>anjgupta</dc:creator>
    <dc:date>2011-08-23T14:50:48Z</dc:date>
    <item>
      <title>keep same name - change var from char to numeric.  Missing type an issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51264#M14045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd like to read in a variable and have it change from character to numeric - retaining the same name.&amp;nbsp; The issue I'm facing is when a character value of .U or .N is inputted into numeric - I lose the missing type and all become just dot (.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this isn't possible I can create new variables and drop the character variables - but if there is any way ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm reading in variables as character and applying the format:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc format;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; invalue chtono &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Y'=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'N'=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'X'=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .N&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; other=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .U;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which results in character values of '1', '2', 'N', and 'U'.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; When I attempt to change these to numbers - I lose the Ns and Us and only have 'generic' missings for them.&amp;nbsp; Regardless of an initial character length of 1 or 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I change them via:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data new(drop=x );&lt;/P&gt;&lt;P&gt; birthdata01 (rename=(&amp;amp;name. =x));&lt;/P&gt;&lt;P&gt;&amp;amp;name.=input(x, 2.);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Most likely there isn't a way for SAS to translate a character 'U' to a missing numeric value of .U but thought to ask.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Aug 2011 19:39:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51264#M14045</guid>
      <dc:creator>anjgupta</dc:creator>
      <dc:date>2011-08-18T19:39:54Z</dc:date>
    </item>
    <item>
      <title>keep same name - change var from char to numeric.  Missing type an issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51265#M14046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wouldn't you get what you want, directly, if you apply the informat you created when you input the data?&amp;nbsp; e.g.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc format;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; invalue chtono&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Y'=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'N'=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'X'=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .N&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; other=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .U;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data test;&lt;/P&gt;&lt;P&gt;&amp;nbsp; informat x chtono.;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input x;&lt;/P&gt;&lt;P&gt;&amp;nbsp; cards;&lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;Y&lt;/P&gt;&lt;P&gt;X&lt;/P&gt;&lt;P&gt;N&lt;/P&gt;&lt;P&gt;2&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Aug 2011 19:48:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51265#M14046</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2011-08-18T19:48:38Z</dc:date>
    </item>
    <item>
      <title>keep same name - change var from char to numeric.  Missing type an issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51266#M14047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SAS treat . .A - .Z&amp;nbsp; all as numeric missing value. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Aug 2011 07:48:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51266#M14047</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2011-08-19T07:48:55Z</dc:date>
    </item>
    <item>
      <title>keep same name - change var from char to numeric.  Missing type an issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51267#M14048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can try - but the cards would be 'Y', 'N', 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The raw data are character and I'm trying to use the same variable name and end up with 1,2,.N and .U.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Aug 2011 19:36:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51267#M14048</guid>
      <dc:creator>anjgupta</dc:creator>
      <dc:date>2011-08-20T19:36:07Z</dc:date>
    </item>
    <item>
      <title>keep same name - change var from char to numeric.  Missing type an issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51268#M14049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure what you mean.&amp;nbsp; If you are saying that the value in the datalines have quotes around them, just include an infile statement with a dsd option. e.g.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc format;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; invalue chtono&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Y'=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'N'=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'X'=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .N&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; other=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .U;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data test;&lt;/P&gt;&lt;P&gt;&amp;nbsp; informat x chtono.;&lt;/P&gt;&lt;P&gt;&amp;nbsp; infile cards dsd;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input x;&lt;/P&gt;&lt;P&gt;&amp;nbsp; cards;&lt;/P&gt;&lt;P&gt;'1'&lt;/P&gt;&lt;P&gt;'Y'&lt;/P&gt;&lt;P&gt;'X'&lt;/P&gt;&lt;P&gt;'N'&lt;/P&gt;&lt;P&gt;'2'&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Aug 2011 20:04:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51268#M14049</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2011-08-20T20:04:43Z</dc:date>
    </item>
    <item>
      <title>keep same name - change var from char to numeric.  Missing type an issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51269#M14050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you.&amp;nbsp; I think that will work - just need to test it with how I'm reading in the raw data.&amp;nbsp; I think I need to avoid infiling the data as character initially.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Aug 2011 22:01:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51269#M14050</guid>
      <dc:creator>anjgupta</dc:creator>
      <dc:date>2011-08-22T22:01:20Z</dc:date>
    </item>
    <item>
      <title>keep same name - change var from char to numeric.  Missing type an issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51270#M14051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I need to input the data and include the variables' lengths - how can I incorporate the suggested solution?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;355&amp;nbsp; data stout.&amp;amp;state._RawBirthData ;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* data read in to become formatted data */&lt;/P&gt;&lt;P&gt;356&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; infile stbirth LRECL=&amp;amp;birthreclength linesize=&amp;amp;birthlinesize&lt;/P&gt;&lt;P&gt;357&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; N=&amp;amp;birthLinesPerObs missover;&lt;/P&gt;&lt;P&gt;358&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %create_code_statements(birthfmt, pramsvars) /*informats for formatting birth file */&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;MPRINT(CREATE_CODE_STATEMENTS):&amp;nbsp;&amp;nbsp; ever_mar = input(ever_mar, chtono.);&lt;/P&gt;&lt;P&gt;MPRINT(CREATE_CODE_STATEMENTS):&amp;nbsp;&amp;nbsp; married = input(married, chtono.);&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;MPRINT(CREATE_INPUT_STRING_D3):&amp;nbsp;&amp;nbsp; #1 @0090 ever_mar 1.&lt;/P&gt;&lt;P&gt;MPRINT(CREATE_INPUT_STRING_D3):&amp;nbsp;&amp;nbsp; #1 @0091 married 1.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: Invalid data for ever_mar in line 2 90-90.&lt;/P&gt;&lt;P&gt;NOTE: Invalid data for married in line 2 91-91.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Anjali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2011 13:09:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51270#M14051</guid>
      <dc:creator>anjgupta</dc:creator>
      <dc:date>2011-08-23T13:09:54Z</dc:date>
    </item>
    <item>
      <title>keep same name - change var from char to numeric.  Missing type an issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51271#M14052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It looks like you are only reading in 1 character for ever_mar and 1 character for married.&amp;nbsp; As such, I would go back to my originally suggested proc format.&amp;nbsp; As for your errors, you macro appears to be assigning informats of 1. when you probably need them to be the name of the informat you create (e.g., chtono1.).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2011 13:19:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51271#M14052</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2011-08-23T13:19:09Z</dc:date>
    </item>
    <item>
      <title>keep same name - change var from char to numeric.  Missing type an issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51272#M14053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the response.&amp;nbsp; Why is the length of 1 problematic?&amp;nbsp;&amp;nbsp; I have put the formats in a file that I include at the start of the program.&amp;nbsp; I think you're suggesting #1 @0090 ever_mar&amp;nbsp; chotno.&amp;nbsp; ?&amp;nbsp; Is that correct?&amp;nbsp; I will do so.&amp;nbsp; Guess I need a bit more clarity - sorry for the hassle.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anjali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2011 13:44:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51272#M14053</guid>
      <dc:creator>anjgupta</dc:creator>
      <dc:date>2011-08-23T13:44:27Z</dc:date>
    </item>
    <item>
      <title>keep same name - change var from char to numeric.  Missing type an issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51273#M14054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A length of 1, in itself, isn't problematic.&amp;nbsp; However, since you don't have delimiters between fields, you have to account for that fact.&amp;nbsp; There is probably a modifier I can't think of at the moment thus, if I were pressed to read the data immediately, I would read them in as characters and convert them.&amp;nbsp; E.g., the following would provide (I think) what you expect:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc format;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; invalue chtono&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Y'=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'N'=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'X'=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .N&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; other=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .U;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want (drop=in_:);&lt;/P&gt;&lt;P&gt;&amp;nbsp; input in_x $ 1-1 in_y $ 2-2;&lt;/P&gt;&lt;P&gt;&amp;nbsp; x=input(in_x,chtono.);&lt;/P&gt;&lt;P&gt;&amp;nbsp; y=input(in_y,chtono.);&lt;/P&gt;&lt;P&gt;&amp;nbsp; cards;&lt;/P&gt;&lt;P&gt;12&lt;/P&gt;&lt;P&gt;YN&lt;/P&gt;&lt;P&gt;XY&lt;/P&gt;&lt;P&gt;NX&lt;/P&gt;&lt;P&gt;21&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2011 14:20:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51273#M14054</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2011-08-23T14:20:37Z</dc:date>
    </item>
    <item>
      <title>keep same name - change var from char to numeric.  Missing type an issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51274#M14055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It *seems* to be working without designating the length.&amp;nbsp; Will test more.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Previously, I was reading in the raw data with the $char1.&amp;nbsp; or 1. informat.&amp;nbsp;&amp;nbsp; Then I was trying to apply my user-defined formats and ran into the char vs numeric issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Your suggestion to use my user-defined informats makes so much sense.&amp;nbsp; And much less code - as I can read and format the vars in 1 step:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MPRINT(CREATE_INPUT_STRING_D3):&amp;nbsp;&amp;nbsp; #1 @0090 ever_mar chtono.&lt;/P&gt;&lt;P&gt;MPRINT(CREATE_INPUT_STRING_D3):&amp;nbsp;&amp;nbsp; #1 @0091 married chtono.&lt;/P&gt;&lt;P&gt;MPRINT(CREATE_INPUT_STRING_D3):&amp;nbsp;&amp;nbsp; #1 @0092 pat_ack chtono.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fingers crossed - seems to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2011 14:36:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51274#M14055</guid>
      <dc:creator>anjgupta</dc:creator>
      <dc:date>2011-08-23T14:36:15Z</dc:date>
    </item>
    <item>
      <title>keep same name - change var from char to numeric.  Missing type an issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51275#M14056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think that your code will produce the wrong results except for the last field and any field that is followed by a delimiter (e.g., a blank).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2011 14:42:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51275#M14056</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2011-08-23T14:42:09Z</dc:date>
    </item>
    <item>
      <title>keep same name - change var from char to numeric.  Missing type an issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51276#M14057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the heads up.&amp;nbsp; I'll check.&amp;nbsp; Maybe the @0090 etc will help designate the start of a new var ...&amp;nbsp; probably not!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just trying to avoid the double name convention - reading in 1 var as character and renaming it to a numeric.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2011 14:50:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51276#M14057</guid>
      <dc:creator>anjgupta</dc:creator>
      <dc:date>2011-08-23T14:50:48Z</dc:date>
    </item>
    <item>
      <title>keep same name - change var from char to numeric.  Missing type an issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51277#M14058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah - back to the drawing board.&amp;nbsp; Argh.&amp;nbsp;&amp;nbsp;&amp;nbsp; I do have the start and end column documented for each variable and can subtract them +1 to get the length.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Basically - am I correct that as soon as you designate length you also imply if it is char or numeric?&amp;nbsp; And then my attempt falls apart?&amp;nbsp;&amp;nbsp; I've been struggling with this for weeks - maybe time to quit the attempt for finesse.&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's so close - the initially char variables are indeed ending up as numeric.&amp;nbsp; Just an issue with reading in too much data due to the lack of a length.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anjali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2011 15:12:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51277#M14058</guid>
      <dc:creator>anjgupta</dc:creator>
      <dc:date>2011-08-23T15:12:24Z</dc:date>
    </item>
    <item>
      <title>keep same name - change var from char to numeric.  Missing type an issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51278#M14059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think that the following might work for you:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc format;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; invalue chtono&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Y=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; N=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; X=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .N&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; other=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .U;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input #1 @1 (x y) (chtono1.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #2 z $;&lt;/P&gt;&lt;P&gt;&amp;nbsp; cards;&lt;/P&gt;&lt;P&gt;12&lt;/P&gt;&lt;P&gt;xx&lt;/P&gt;&lt;P&gt;YN&lt;/P&gt;&lt;P&gt;xx&lt;/P&gt;&lt;P&gt;XY&lt;/P&gt;&lt;P&gt;xx&lt;/P&gt;&lt;P&gt;NX&lt;/P&gt;&lt;P&gt;xx&lt;/P&gt;&lt;P&gt;21&lt;/P&gt;&lt;P&gt;xx&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2011 15:25:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51278#M14059</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2011-08-23T15:25:17Z</dc:date>
    </item>
    <item>
      <title>keep same name - change var from char to numeric.  Missing type an issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51279#M14060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;proc format;&lt;/P&gt;&lt;P&gt; invalue chtono (default=1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Y'=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'N'=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'X'=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .N&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; other=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .U;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt; input @1 x chtono.&amp;nbsp; /* since defined default in proc format do not need to define chtono&amp;lt;w&amp;gt;. */&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @2 y chtono.&amp;nbsp; /* could just use chtono1. instead for same result */;&lt;/P&gt;&lt;P&gt; cards;&lt;/P&gt;&lt;P&gt;12&lt;/P&gt;&lt;P&gt;YN&lt;/P&gt;&lt;P&gt;XY&lt;/P&gt;&lt;P&gt;NX&lt;/P&gt;&lt;P&gt;21&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc print data=want noobs; &lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;x y&lt;/P&gt;&lt;P&gt;U U&lt;/P&gt;&lt;P&gt;1 2&lt;/P&gt;&lt;P&gt;N 1&lt;/P&gt;&lt;P&gt;2 N&lt;/P&gt;&lt;P&gt;U U&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2011 15:40:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51279#M14060</guid>
      <dc:creator>FriedEgg</dc:creator>
      <dc:date>2011-08-23T15:40:07Z</dc:date>
    </item>
    <item>
      <title>keep same name - change var from char to numeric.  Missing type an issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51280#M14061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;.A - .Z are valid numeric invalues:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt; input x @@;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;.A .B .C .D&lt;/P&gt;&lt;P&gt;.E .F .G .H&lt;/P&gt;&lt;P&gt;.I .J .K .L&lt;/P&gt;&lt;P&gt;.M .N .O .P&lt;/P&gt;&lt;P&gt;.Q .R .S .T&lt;/P&gt;&lt;P&gt;.U .V .W .X&lt;/P&gt;&lt;P&gt;.Y .Z&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;proc print; where x &amp;lt;= .E;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Obs x&lt;/P&gt;&lt;P&gt;1 A&lt;/P&gt;&lt;P&gt;2 B&lt;/P&gt;&lt;P&gt;3 C&lt;/P&gt;&lt;P&gt;4 D&lt;/P&gt;&lt;P&gt;5 E&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2011 15:52:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51280#M14061</guid>
      <dc:creator>FriedEgg</dc:creator>
      <dc:date>2011-08-23T15:52:33Z</dc:date>
    </item>
    <item>
      <title>keep same name - change var from char to numeric.  Missing type an issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51281#M14062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would you mind dissecting/explaining it a bit?&amp;nbsp;&amp;nbsp; It chtono1.&amp;nbsp; equivalent to chtono above?&amp;nbsp; The '1' doesn't indicate length, does it?&amp;nbsp; Are the lengths implied in the code above?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My raw data is all on 1 line per client, non delimited.&amp;nbsp; And the SAS code is created from a spreadsheet containing:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 431px;"&gt;&lt;COL width="92" /&gt;&lt;COL width="83" /&gt;&lt;COL span="4" width="64" /&gt;&lt;TBODY&gt;&lt;TR&gt;&amp;nbsp; &lt;TD class="xl68" height="19" style="height: 14.25pt; width: 69pt;" width="92"&gt;varName&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl68" style="width: 62pt;" width="83"&gt;fromData&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl68" style="width: 48pt;" width="64"&gt;startPointer&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl68" style="width: 48pt;" width="64"&gt;endPointer&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl68" style="width: 48pt;" width="64"&gt;Row&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl68" style="width: 48pt;" width="64"&gt;nformat&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 431px;"&gt;&lt;COL style="width: 69pt;" width="92" /&gt; &lt;COL style="width: 62pt;" width="83" /&gt; &lt;COL span="4" style="width: 48pt;" width="64" /&gt; &lt;TBODY&gt;&lt;TR style="height: 10.5pt;"&gt;&amp;nbsp; &lt;TD class="xl67" height="14" style="height: 10.5pt; width: 69pt;" width="92"&gt;fdobmo&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66" style="width: 62pt;" width="83"&gt;birth&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66" style="width: 48pt;" width="64"&gt;0085&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66" style="width: 48pt;" width="64"&gt;0086&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66" style="width: 48pt;" width="64"&gt;1&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66" style="width: 48pt;" width="64"&gt;2.&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 10.5pt;"&gt;&amp;nbsp; &lt;TD class="xl67" height="14" style="height: 10.5pt;"&gt;fdobdy&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66"&gt;birth&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66"&gt;0087&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66"&gt;0088&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66"&gt;1&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66"&gt;2.&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 10.5pt;"&gt;&amp;nbsp; &lt;TD class="xl66" height="14" style="height: 10.5pt;"&gt;ever_mar&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66"&gt;birth&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66"&gt;0090&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66"&gt;0090&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66"&gt;1&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl68"&gt;chtono.&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 10.5pt;"&gt;&amp;nbsp; &lt;TD class="xl66" height="14" style="height: 10.5pt;"&gt;married&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66"&gt;birth&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66"&gt;0091&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66"&gt;0091&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66"&gt;1&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl68"&gt;chtono.&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 10.5pt;"&gt;&amp;nbsp; &lt;TD class="xl66" height="14" style="height: 10.5pt;"&gt;pat_ack&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66"&gt;birth&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66"&gt;0092&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66"&gt;0092&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66"&gt;1&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl68"&gt;chtono.&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 10.5pt;"&gt;&amp;nbsp; &lt;TD class="xl66" height="14" style="height: 10.5pt;"&gt;mat_deg&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66"&gt;birth&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66"&gt;0093&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66"&gt;0093&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66"&gt;1&lt;/TD&gt;&amp;nbsp; &lt;TD class="xl66"&gt;degf.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At least that's from my last attempt at changing nformat to include some created informats as well as lengths with char and numeric designations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ever grateful,&lt;/P&gt;&lt;P&gt;Anjali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2011 15:54:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51281#M14062</guid>
      <dc:creator>anjgupta</dc:creator>
      <dc:date>2011-08-23T15:54:59Z</dc:date>
    </item>
    <item>
      <title>keep same name - change var from char to numeric.  Missing type an issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51282#M14063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, the 1 indicated length and could either be specified as the default when you create the informat or, like I did, when you use the informat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had to guess at the new informat you introduced, but the following reads the kind of data that I think you are dealing with:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc format;&lt;/P&gt;&lt;P&gt;&amp;nbsp; invalue chtono&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Y=1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; N=2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; X=.N&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; other=.U;&lt;/P&gt;&lt;P&gt;&amp;nbsp; invalue degf&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; H=1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A=2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B=3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; M=4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; X=.N&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; other=.U;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input @1 (fdobmo fdobdy) (2.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (ever_mar married pat_ack) (chtono1.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mat_deg degf1.;&lt;/P&gt;&lt;P&gt;&amp;nbsp; cards;&lt;/P&gt;&lt;P&gt;0315YYYH&lt;/P&gt;&lt;P&gt;0617XXUB&lt;/P&gt;&lt;P&gt;1002NN2M&lt;/P&gt;&lt;P&gt;12142NXX&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2011 16:11:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51282#M14063</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2011-08-23T16:11:12Z</dc:date>
    </item>
    <item>
      <title>keep same name - change var from char to numeric.  Missing type an issue</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51283#M14064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to you both.&amp;nbsp; Think it's working!&amp;nbsp;&amp;nbsp; Didn't know about the default option - the learning never stops.&amp;nbsp; This is a huuuuggge help and I appreciate your time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2011 16:53:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/keep-same-name-change-var-from-char-to-numeric-Missing-type-an/m-p/51283#M14064</guid>
      <dc:creator>anjgupta</dc:creator>
      <dc:date>2011-08-23T16:53:18Z</dc:date>
    </item>
  </channel>
</rss>

