<?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: ERROR: Variable basingYear has been defined as both character and numeric in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Variable-basingYear-has-been-defined-as-both-character-and/m-p/299870#M270333</link>
    <description>&lt;P&gt;We all started out where you are now, so don't worry about that part.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You showed a program with 3 DATA steps and one PROC SORT.&amp;nbsp; And you got error messages.&amp;nbsp; The very first error messages about a variable being defined as both character and numeric ... does the log indicate which step those messages apply to?&amp;nbsp; (It is possible that the answer is "no" due to the presence of macro language, but you will have to examine the log to find out.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just for the record, I know the answers as I write these questions.&amp;nbsp; I'm just trying to lead you through the steps you will need, so you can learn to diagnose and fix such problems on your own.&lt;/P&gt;</description>
    <pubDate>Wed, 21 Sep 2016 15:28:09 GMT</pubDate>
    <dc:creator>Astounding</dc:creator>
    <dc:date>2016-09-21T15:28:09Z</dc:date>
    <item>
      <title>ERROR: Variable basingYear has been defined as both character and numeric</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Variable-basingYear-has-been-defined-as-both-character-and/m-p/299628#M270327</link>
      <description>&lt;P&gt;Hello there,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to run this part of the code for the longest and I have not been able to complete this part of it, I keep getting the same error.&lt;/P&gt;&lt;P&gt;FYI, this code is huge, but this part has me stock in it. I would appreciate it!!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data tempsas.itemoutputraw;&lt;/P&gt;&lt;P&gt;set tempsas.pi2_&amp;amp;b_ioYear - tempsas.pi2_&amp;amp;e_ioYear&lt;/P&gt;&lt;P&gt;tempsas.output_&amp;amp;b_ioYear - tempsas.output_&amp;amp;e_ioYear;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;proc sort data=tempsas.itemOutputRaw out=tempsas.itemOutput;&lt;/P&gt;&lt;P&gt;by item_id ioYear basingYear;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;data tempsas.itemoutput1;&lt;/P&gt;&lt;P&gt;set tempsas.itemoutput;&lt;/P&gt;&lt;P&gt;proval=basicval+comtax;&lt;/P&gt;&lt;P&gt;drop basicval comtax;&lt;/P&gt;&lt;P&gt;proc sort data=tempsas.itemoutput1;&lt;/P&gt;&lt;P&gt;by item_id ioyear basingyear;&lt;/P&gt;&lt;P&gt;data itemoutput2;&lt;/P&gt;&lt;P&gt;set itemoutput1;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;where itemACPSA not in (&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'item91'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;,&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'item92'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;,&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'item99'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;,&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'noArt'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;,&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'total'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;);&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;ERROR: Variable ioYear has been defined as both character and numeric.&lt;/P&gt;&lt;P&gt;ERROR: Variable basingYear has been defined as both character and numeric.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;WARNING: The data set TEMPSAS.ITEMOUTPUTRAW may be incomplete. When this step was stopped there were 0 observations and 9&lt;/P&gt;&lt;P&gt;variables.&lt;/P&gt;&lt;P&gt;WARNING: Data set TEMPSAS.ITEMOUTPUTRAW was not replaced because this step was stopped.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;ERROR: Variable ITEM_ID not found.&lt;/P&gt;&lt;P&gt;ERROR: Variable IOYEAR not found.&lt;/P&gt;&lt;P&gt;ERROR: Variable BASINGYEAR not found.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;WARNING: The data set TEMPSAS.ITEMOUTPUT may be incomplete. When this step was stopped there were 0 observations and 0&lt;/P&gt;&lt;P&gt;variables.&lt;/P&gt;&lt;P&gt;WARNING: Data set TEMPSAS.ITEMOUTPUT was not replaced because this step was stopped.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.01 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Variable comtax is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable basicval is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set TEMPSAS.ITEMOUTPUT.&lt;/P&gt;&lt;P&gt;NOTE: The data set TEMPSAS.ITEMOUTPUT1 has 0 observations and 1 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;ERROR: Variable ITEM_ID not found.&lt;/P&gt;&lt;P&gt;ERROR: Variable IOYEAR not found.&lt;/P&gt;&lt;P&gt;ERROR: Variable BASINGYEAR not found.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;ERROR: File WORK.ITEMOUTPUT1.DATA does not exist.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;WARNING: The data set WORK.ITEMOUTPUT2 may be incomplete. When this step was stopped there were 0 observations and 0 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.01 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2016 18:43:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Variable-basingYear-has-been-defined-as-both-character-and/m-p/299628#M270327</guid>
      <dc:creator>Afor910327</dc:creator>
      <dc:date>2016-09-20T18:43:36Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Variable basingYear has been defined as both character and numeric</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Variable-basingYear-has-been-defined-as-both-character-and/m-p/299635#M270328</link>
      <description>&lt;P&gt;Let's start with two questions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First, when&amp;nbsp; you see those first two error messages, is it clear what step in the program they refer to?&amp;nbsp; (It may not be, if macro language is generating your program.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Second, assuming the first question is answered "yes", what do you think the words in the error message mean?&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2016 19:08:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Variable-basingYear-has-been-defined-as-both-character-and/m-p/299635#M270328</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2016-09-20T19:08:49Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Variable basingYear has been defined as both character and numeric</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Variable-basingYear-has-been-defined-as-both-character-and/m-p/299661#M270329</link>
      <description>&lt;P&gt;Your 1st ERROR messages are:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ERROR: Variable ioYear has been defined as both character and numeric.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ERROR: Variable basingYear has been defined as both character and numeric.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WARNING: The data set TEMPSAS.ITEMOUTPUTRAW may be incomplete.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To create&amp;nbsp;&lt;STRONG&gt;TEMPSAS.ITEMOUTPUTRAW &lt;/STRONG&gt;you concatenate several input datasets;&lt;/P&gt;&lt;P&gt;Check&amp;nbsp;&lt;STRONG&gt;ioYear &lt;/STRONG&gt;and&amp;nbsp;&lt;STRONG&gt;basingYear&amp;nbsp;&lt;/STRONG&gt;on each input for its type and you'll find that in some of them&lt;/P&gt;&lt;P&gt;they are defined numeric and on others as character;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In oredr to change type of a avriable you can do:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* 1-change from character to numeric */&lt;/P&gt;&lt;P&gt;data out;&lt;/P&gt;&lt;P&gt;&amp;nbsp;set inp (&lt;STRONG&gt;rename=( var_name = var_temp);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; varname = input(var_temp, best8.);&lt;/STRONG&gt; &amp;nbsp; /* adapt informat to length of cahr variable */&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ... &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;drop var_temp;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in similar way you can change from numeric to character, by: &amp;nbsp;&lt;STRONG&gt;varname = put(var_temp, 8.)&amp;nbsp;&lt;/STRONG&gt; adapting the format.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2016 20:01:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Variable-basingYear-has-been-defined-as-both-character-and/m-p/299661#M270329</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2016-09-20T20:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Variable basingYear has been defined as both character and numeric</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Variable-basingYear-has-been-defined-as-both-character-and/m-p/299678#M270330</link>
      <description>&lt;P&gt;Any takers on bets&amp;nbsp;that one or more of the data sets involved derive from Proc Import calls?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your original datasets were created by Proc Import (or import wizards or tasks) then SAS had to guess whether values were character or numeric. Depending on how well structured those source files were the guesses may not have been optimal. So now you have data where the same variables are of two different types in different datasets.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2016 20:29:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Variable-basingYear-has-been-defined-as-both-character-and/m-p/299678#M270330</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-09-20T20:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Variable basingYear has been defined as both character and numeric</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Variable-basingYear-has-been-defined-as-both-character-and/m-p/299807#M270331</link>
      <description>&lt;P&gt;Excuse me for my ignorance but I am new to SAS and I need the output to do my job, could be more specific so I can answer your question...&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2016 11:53:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Variable-basingYear-has-been-defined-as-both-character-and/m-p/299807#M270331</guid>
      <dc:creator>Afor910327</dc:creator>
      <dc:date>2016-09-21T11:53:06Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Variable basingYear has been defined as both character and numeric</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Variable-basingYear-has-been-defined-as-both-character-and/m-p/299825#M270332</link>
      <description>&lt;P&gt;No one was born with knowledge. We all learn in order to hvae it.&lt;/P&gt;&lt;P&gt;I have a motto: "Everyting that we don't know is hard. Let's learn and it will be easy";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SAS variable type can be either &lt;STRONG&gt;char&lt;/STRONG&gt;acter or &lt;STRONG&gt;num&lt;/STRONG&gt;eric.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your 1s program step is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data tempsas.itemoutputraw;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; set tempsas.pi2_&amp;amp;b_ioYear - tempsas.pi2_&amp;amp;e_ioYear&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; tempsas.output_&amp;amp;b_ioYear - tempsas.output_&amp;amp;e_ioYear;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1) How did you assigned the macro variables:&amp;nbsp;&lt;STRONG&gt;b_ioYear ,&amp;nbsp;e_ioYear&amp;nbsp;&lt;/STRONG&gt;?&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;and what values ? How many years are between&amp;nbsp;&lt;STRONG&gt;b_ioYear &lt;/STRONG&gt;and&lt;STRONG&gt; e_ioYear&amp;nbsp;&lt;/STRONG&gt;&lt;SPAN&gt;? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now run next code on each of the inputs and check &lt;U&gt;results&lt;/U&gt; :&lt;/P&gt;&lt;P&gt;1) are variables &amp;nbsp;&amp;nbsp;&lt;STRONG&gt;&lt;SPAN&gt;ioyear &amp;nbsp; basingyear&lt;/SPAN&gt;&lt;/STRONG&gt;&amp;nbsp; &lt;U&gt;exists&lt;/U&gt; on each of the inputs ?&lt;/P&gt;&lt;P&gt;2) are&amp;nbsp;&lt;SPAN&gt;variables &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN&gt;ioyear &amp;nbsp; basingyear &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;U&gt;types &lt;/U&gt;the same of the inputs ? and value is it: &lt;STRONG&gt;NUM&lt;/STRONG&gt; or &lt;STRONG&gt;CHAR&lt;/STRONG&gt; ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc contents data=tempsas.&lt;STRONG&gt;pi2_&amp;amp;b_ioYear ; &lt;/STRONG&gt;run;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;proc contents data=tempsas.&lt;/SPAN&gt;&lt;STRONG&gt;pi2_&amp;amp;e_ioYear ; &lt;/STRONG&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;proc contents data=tempsas.&lt;STRONG&gt;output_&lt;/STRONG&gt;&lt;STRONG&gt;&amp;amp;b_ioYear ; &lt;/STRONG&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;proc contents data=tempsas.&lt;STRONG&gt;output_&lt;/STRONG&gt;&lt;STRONG&gt;&amp;amp;e_ioYear ; &lt;/STRONG&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Probably there is at least one input file where those variables are&amp;nbsp;defined differently from others or do not exist&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2016 13:23:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Variable-basingYear-has-been-defined-as-both-character-and/m-p/299825#M270332</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2016-09-21T13:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Variable basingYear has been defined as both character and numeric</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Variable-basingYear-has-been-defined-as-both-character-and/m-p/299870#M270333</link>
      <description>&lt;P&gt;We all started out where you are now, so don't worry about that part.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You showed a program with 3 DATA steps and one PROC SORT.&amp;nbsp; And you got error messages.&amp;nbsp; The very first error messages about a variable being defined as both character and numeric ... does the log indicate which step those messages apply to?&amp;nbsp; (It is possible that the answer is "no" due to the presence of macro language, but you will have to examine the log to find out.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just for the record, I know the answers as I write these questions.&amp;nbsp; I'm just trying to lead you through the steps you will need, so you can learn to diagnose and fix such problems on your own.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2016 15:28:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Variable-basingYear-has-been-defined-as-both-character-and/m-p/299870#M270333</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2016-09-21T15:28:09Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Variable basingYear has been defined as both character and numeric</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Variable-basingYear-has-been-defined-as-both-character-and/m-p/300654#M270334</link>
      <description>For managing info from multiple files we need something more robust than proc import</description>
      <pubDate>Sun, 25 Sep 2016 21:30:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Variable-basingYear-has-been-defined-as-both-character-and/m-p/300654#M270334</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2016-09-25T21:30:20Z</dc:date>
    </item>
  </channel>
</rss>

