<?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: change variable types, formats and informats with values from another table in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138538#M27966</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to put spaces between the individual variable names.&amp;nbsp; It looks like perhaps you put underscores instead and so your 500 variable names became one variable name that was way too long.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Nov 2013 14:09:30 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2013-11-11T14:09:30Z</dc:date>
    <item>
      <title>change variable types, formats and informats with values from another table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138532#M27960</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;i finanlly read an excel table with 5000 columns and 100 rows into SAS &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; now the task is to correct the variable types, informats and formats, since SAS probably didnt get them all right. To this purpose, i have another excel table, say informationtable, documenting the right types and formates etc. (you can image a table with 2 colums and 5000 rows, the first column lists the variables names and the second column contains statements like 'long text', 'number without decimal places', 'procent with two decimal places', 'dates' and so on).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i would like to correct the data with the values from the informationtable. I dont know how to do it with such a big number of variables that i am having. I am thinking about joining the tables together and using 'where'. can somehow help me with the code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks very much.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&amp;nbsp; Dingdang&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Nov 2013 10:49:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138532#M27960</guid>
      <dc:creator>Dingdang</dc:creator>
      <dc:date>2013-11-11T10:49:51Z</dc:date>
    </item>
    <item>
      <title>Re: change variable types, formats and informats with values from another table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138533#M27961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;out of my naive SAS knowledge I did the following: I saved the variables with property 'long text' into a macro variable :textvar and tried to use it in a data step:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA libl.have_kopie;&amp;nbsp; /*this is the dataset, whose variable formats i want to correct.&lt;/P&gt;&lt;P&gt;INFORMAT &amp;amp;textvar $300.;&lt;/P&gt;&lt;P&gt;FORMAT &amp;amp;textvar $300.;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this didnt work. I guess i am not supposed to use a macro variable this way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone help me correct the code? or maybe is this way of solving the problem a nonsence?&lt;/P&gt;&lt;P&gt;BR&amp;nbsp; Dingdang&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Nov 2013 13:27:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138533#M27961</guid>
      <dc:creator>Dingdang</dc:creator>
      <dc:date>2013-11-11T13:27:51Z</dc:date>
    </item>
    <item>
      <title>Re: change variable types, formats and informats with values from another table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138534#M27962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Without more details about what the error was, and how you created &amp;amp;textvar, we really can't help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is no general problem using &amp;amp;textvar as you have done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you really want 5000 variables to each have informat and format identically equal to $300. ?? That would take up a huge amount of storage space.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Nov 2013 13:45:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138534#M27962</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2013-11-11T13:45:56Z</dc:date>
    </item>
    <item>
      <title>Re: change variable types, formats and informats with values from another table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138535#M27963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would not want PROC IMPORT doing that much guessing fore me.&amp;nbsp; If you know the attributes of the fields it would seem easier to me to have XL create a flat file "CSV" perhaps and write your own data step to read the file.&amp;nbsp; You can define the attributes and get them right with no need to fix it the mess make by PROC IMPORT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Nov 2013 13:52:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138535#M27963</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2013-11-11T13:52:05Z</dc:date>
    </item>
    <item>
      <title>Re: change variable types, formats and informats with values from another table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138536#M27964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is how i created &amp;amp;textvar:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC SQL;&lt;/P&gt;&lt;P&gt;SELECT Field&amp;nbsp;&amp;nbsp;&amp;nbsp; / *this is the column that contains all the variablenames from Inforamtiontable*/&lt;/P&gt;&lt;P&gt;INTO :textvar SEPARATED BY ''&lt;/P&gt;&lt;P&gt;FROM libl.Informationtable&lt;/P&gt;&lt;P&gt;WHERE Formats_SAS="Text";&amp;nbsp;&amp;nbsp;&amp;nbsp; /*Formats_SAS is the second column in informationtable, it contains the property like 'Text' 'Dates' etc. */&lt;/P&gt;&lt;P&gt;QUIT;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I ran my code before and in the log stands:&lt;/P&gt;&lt;P&gt;DATA libl.have_kopie;&lt;/P&gt;&lt;P&gt;INFORMAT &amp;amp;textvar $300.;&lt;/P&gt;&lt;P&gt;ERROR: The Variable&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RTF00_0080_040RTF00_0120_040RTF00_0240_040RTF00_0260_040RTF00_0280_040RTF01_0100_030RTF01_0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 110_030RTF01_0120_030RTF01_0130_030RTF01_0140_030RTF01_0150_030RTF01_0160_030RTF01_0170_030&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RTF01_0180_030RTF01_0190_030RTF01_0100_050RTF01_0110_050RTF01_0120_050R has more than 32 characters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I am guessing I cannot use a macro variable like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have about 1000 variables with the property 'Text' and unfortunately there are some with really long texts in them. I will later identify those ones and leave them more space and the others less so I dont waste so much storage space. But thanks for the hint.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&amp;nbsp; Dingdang&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Nov 2013 14:01:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138536#M27964</guid>
      <dc:creator>Dingdang</dc:creator>
      <dc:date>2013-11-11T14:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: change variable types, formats and informats with values from another table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138537#M27965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi data_null_,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;because the number of variables I have (5000) I was hoping there is another way around the 'typing in all the informats and formating myself'. But if there is no better way, guess i will have to do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&amp;nbsp; Dingdang &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Nov 2013 14:05:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138537#M27965</guid>
      <dc:creator>Dingdang</dc:creator>
      <dc:date>2013-11-11T14:05:18Z</dc:date>
    </item>
    <item>
      <title>Re: change variable types, formats and informats with values from another table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138538#M27966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to put spaces between the individual variable names.&amp;nbsp; It looks like perhaps you put underscores instead and so your 500 variable names became one variable name that was way too long.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Nov 2013 14:09:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138538#M27966</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-11-11T14:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: change variable types, formats and informats with values from another table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138539#M27967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;
&lt;P&gt;because the number of variables I have (5000) I was hoping there is another way around the 'typing in all the informats and formating myself'. But if there is no better way, guess i will have to do that.&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;But of course there are better ways.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First, as Tom points out, you didn't separate the variable names. Your coding error is here:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC SQL;&lt;/P&gt;&lt;P&gt;SELECT Field&amp;nbsp;&amp;nbsp;&amp;nbsp; / *this is the column that contains all the variablenames from Inforamtiontable*/&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;INTO :textvar SEPARATED BY ''&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;------ ERROR ERROR ERROR&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;FROM libl.Informationtable&lt;/P&gt;&lt;P&gt;WHERE Formats_SAS="Text";&amp;nbsp;&amp;nbsp;&amp;nbsp; /*Formats_SAS is the second column in informationtable, it contains the property like 'Text' 'Dates' etc. */&lt;/P&gt;&lt;P&gt;QUIT;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It should say SEPARATED BY ' ' — note should be a space between the two single quotes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As data _null_ has pointed out, there may still be even smarter ways to handle this, maybe even using a CSV file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I point out, there may still be even smarter ways to handle this, do you really want to have 5000 columns with the same INFORMAT and FORMAT? Your initial problem statement seemed to indicate otherwise.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Nov 2013 14:15:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138539#M27967</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2013-11-11T14:15:47Z</dc:date>
    </item>
    <item>
      <title>Re: change variable types, formats and informats with values from another table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138540#M27968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Tom,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that was a good point. I now put a space into the statement :SEPARATED BY ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I ran the code again:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA libl.have_kopie;&amp;nbsp; /*this is the dataset, whose variable formats i want to correct.&lt;/P&gt;&lt;P&gt;INFORMAT &amp;amp;textvar $300.;&lt;/P&gt;&lt;P&gt;FORMAT &amp;amp;textvar $300.;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and I got the note: the variable... is not initialised.&lt;/P&gt;&lt;P&gt;and the result is that libl.have_kopie turned into a dataset with only one (empty) observation (so all my original 100 observations are gone...)&amp;nbsp; and the variales from &amp;amp;textvar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&amp;nbsp; Dingdang&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Nov 2013 14:17:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138540#M27968</guid>
      <dc:creator>Dingdang</dc:creator>
      <dc:date>2013-11-11T14:17:01Z</dc:date>
    </item>
    <item>
      <title>Re: change variable types, formats and informats with values from another table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138541#M27969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi PaigeMiller, data _null_&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think I didnt quite understand what you meant by using a CSV file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually I dont need all the variables with attribute 'long text' to have the same Format and Informat. I just want SAS to read my data correctly. I saved my original excel table into a .txt file with tab and imported into SAS with Proc import. But because SAS only reads the first 20 observations and guesses the format there must be some variables that got the wrong format. so I thought i could correct this with my informationtable to avoid typing in the formats and informats.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;maybe this was not a very smart way to solve my problem. Any idea how i can make this easier and better?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you so much!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&amp;nbsp; Dingdang&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Nov 2013 14:28:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138541#M27969</guid>
      <dc:creator>Dingdang</dc:creator>
      <dc:date>2013-11-11T14:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: change variable types, formats and informats with values from another table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138542#M27970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Now that you have the list of variables you can use them to standardize your data. The problem with your data step is that you never referenced the data you wanted it to use, hence the uninitialized error message.&amp;nbsp; Also FORMAT is for how you want the data displayed and is really NOT what you want to use for these types of long character variables.&amp;nbsp; Normally for character variables you will get better results in SAS if you do NOT attach any permanent format to them. You can use the FORMAT statement to remove any formats that PROC IMPORT might have mistakenly attached.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To recreate the data with the new variable definitions use the same name in the DATA and SET statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;data libl.have_kopie; &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; length &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;amp;textvar $300&lt;/SPAN&gt; ;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; set libl.have_kopie; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; INFORMAT &amp;amp;textvar ;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; FORMAT &amp;amp;textvar ;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;RUN;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Nov 2013 14:38:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138542#M27970</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-11-11T14:38:08Z</dc:date>
    </item>
    <item>
      <title>Re: change variable types, formats and informats with values from another table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138543#M27971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe all you need to do is adjust the GUESSINGROWS parameter.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Nov 2013 14:39:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138543#M27971</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2013-11-11T14:39:22Z</dc:date>
    </item>
    <item>
      <title>Re: change variable types, formats and informats with values from another table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138544#M27972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi data_null_&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my case i will change the guessingrows to 100. I dont really have much experience with SAS. If I do this, SAS will make the right guessing? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Nov 2013 14:58:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138544#M27972</guid>
      <dc:creator>Dingdang</dc:creator>
      <dc:date>2013-11-11T14:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: change variable types, formats and informats with values from another table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138545#M27973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Tom,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your code solves the problem of this post. Thanks very much &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will try other suggestions as well with regards to importing data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&amp;nbsp; Dingdang &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Nov 2013 14:59:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138545#M27973</guid>
      <dc:creator>Dingdang</dc:creator>
      <dc:date>2013-11-11T14:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: change variable types, formats and informats with values from another table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138546#M27974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't know if it will guess right but there will be more data. RTM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Nov 2013 15:01:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-variable-types-formats-and-informats-with-values-from/m-p/138546#M27974</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2013-11-11T15:01:03Z</dc:date>
    </item>
  </channel>
</rss>

