<?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 name (not so easy) in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Change-variable-name-not-so-easy/m-p/550136#M152737</link>
    <description>&lt;P&gt;just klick on your name and you see everything you have posted, the list contains this topics clone.&lt;/P&gt;</description>
    <pubDate>Thu, 11 Apr 2019 07:27:42 GMT</pubDate>
    <dc:creator>andreas_lds</dc:creator>
    <dc:date>2019-04-11T07:27:42Z</dc:date>
    <item>
      <title>Change variable name (not so easy)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Change-variable-name-not-so-easy/m-p/549892#M152642</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm SO SORRY, i don't know what just happen but i delete my previous topic by mistake ... !!!!! I'm writting it again, so sorry for people who answer me... &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/30622"&gt;@gamotte&lt;/a&gt;&amp;nbsp; &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12505"&gt;@BruceBrad&lt;/a&gt; ..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;---------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;I have 9 variables :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- &lt;STRONG&gt;Level&lt;/STRONG&gt; (which value is between 1 and &lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt;&lt;/P&gt;&lt;P&gt;- &lt;STRONG&gt;cniv1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;- &lt;STRONG&gt;cniv2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;- ...&lt;/P&gt;&lt;P&gt;- &lt;STRONG&gt;cniv8&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All cniv variables contain a code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have to change the value of cniv variables depend of the level of hierarchy&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm putting an example to explicate what i want with a level = 5&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The first board is what i have and the second one is what i want.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28605i7A4A0A031358B255/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm putting a second example with level = 7 :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28607i6ACDBF736B251813/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't know how explicate it with sentences, i hop you understood my problem and my bad english...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good afternoon,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Onizuka&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-------------------------------------&lt;/P&gt;&lt;P&gt;I'm putting there the answers gave me gamotte and BruceBradd but it doesn't work because it sort the value descending and not by order of hierarchy (this is not clear i know..)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* Gamotte's answer */&lt;BR /&gt;data test;
set cim_hierarchie;
array cniv(8) cniv8-cniv1;
call sortn(of cniv(*));
run;

/* BruceBradd's answer */
data test;
set cim_hierarchie;
array cniv(*) cniv1-cniv8;
array newcniv(*) newcniv1-newcniv8;
do i = 1 to 8;
newcniv(i)=cniv(i);
end;
do j = 1 to 8;
cniv(j)=largest(j, of newcniv1-newcniv8);
end;
drop new: i j;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Apr 2019 09:55:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Change-variable-name-not-so-easy/m-p/549892#M152642</guid>
      <dc:creator>Onizuka</dc:creator>
      <dc:date>2019-04-10T09:55:10Z</dc:date>
    </item>
    <item>
      <title>Re: Change variable name (not so easy)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Change-variable-name-not-so-easy/m-p/550109#M152725</link>
      <description>&lt;P&gt;Like this?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data HAVE;
  input LEVEL CNIV1 CNIV2 CNIV3 CNIV4 CNIV5 CNIV6 CNIV7 CNIV8 ;
cards;
5 5000 30 600  500  5 . . .
7 5000 30 600  500  5 30 4400 .
run;

data WANT;
  set HAVE;
  array CNIV(*) CNIV1-CNIV8;
  TMP        = CNIV1;
  CNIV1      = CNIV[LEVEL];
  CNIV[LEVEL]= TMP;
  drop TMP;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;DIV class="branch"&gt;
&lt;DIV&gt;
&lt;DIV align="center"&gt;
&lt;TABLE class="table" summary="Procedure Print: Data Set WORK.WANT" frame="box" rules="all" cellspacing="0" cellpadding="5"&gt;&lt;COLGROUP&gt; &lt;COL /&gt; &lt;COL /&gt; &lt;COL /&gt; &lt;COL /&gt; &lt;COL /&gt; &lt;COL /&gt; &lt;COL /&gt; &lt;COL /&gt; &lt;COL /&gt;&lt;/COLGROUP&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="r header" scope="col"&gt;LEVEL&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;CNIV1&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;CNIV2&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;CNIV3&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;CNIV4&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;CNIV5&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;CNIV6&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;CNIV7&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;CNIV8&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class="r data"&gt;5&lt;/TD&gt;
&lt;TD class="r data"&gt;&lt;FONT color="#FF0000"&gt;5&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD class="r data"&gt;30&lt;/TD&gt;
&lt;TD class="r data"&gt;600&lt;/TD&gt;
&lt;TD class="r data"&gt;500&lt;/TD&gt;
&lt;TD class="r data"&gt;&lt;FONT color="#FF0000"&gt;5000&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD class="r data"&gt;.&lt;/TD&gt;
&lt;TD class="r data"&gt;.&lt;/TD&gt;
&lt;TD class="r data"&gt;.&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="r data"&gt;7&lt;/TD&gt;
&lt;TD class="r data"&gt;&lt;FONT color="#FF0000"&gt;4400&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD class="r data"&gt;30&lt;/TD&gt;
&lt;TD class="r data"&gt;600&lt;/TD&gt;
&lt;TD class="r data"&gt;500&lt;/TD&gt;
&lt;TD class="r data"&gt;5&lt;/TD&gt;
&lt;TD class="r data"&gt;30&lt;/TD&gt;
&lt;TD class="r data"&gt;&lt;FONT color="#FF0000"&gt;5000&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD class="r data"&gt;.&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Thu, 11 Apr 2019 03:28:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Change-variable-name-not-so-easy/m-p/550109#M152725</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-04-11T03:28:37Z</dc:date>
    </item>
    <item>
      <title>Re: Change variable name (not so easy)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Change-variable-name-not-so-easy/m-p/550135#M152736</link>
      <description>&lt;P&gt;Hello ChrisNZ, thank you for the answer, there is another topic (same name) that i have created. I don't even know how do you see this topic because i completly lost the track of it (i thought it has been deleted !).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your solution doesn't answer to my problem because all values (characters values) have to be invert !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So when you have this table you have created :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data HAVE;
  input LEVEL CNIV1 CNIV2 CNIV3 CNIV4 CNIV5 CNIV6 CNIV7 CNIV8 ;
cards;
5 5000 30 600  500  5 . . .
7 5000 30 600  500  5 30 4400 .
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;the results should be :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;&lt;STRONG&gt;5 &amp;nbsp; &amp;nbsp; 5 &amp;nbsp; &amp;nbsp; 500&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 600&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 30 &amp;nbsp; &amp;nbsp; 5000&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; . &amp;nbsp; &amp;nbsp; . &amp;nbsp; &amp;nbsp; .&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;&lt;STRONG&gt;7&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4400&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 30&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5 &amp;nbsp; &amp;nbsp; 500 &amp;nbsp; &amp;nbsp; 600 &amp;nbsp; &amp;nbsp; 30 &amp;nbsp; &amp;nbsp; 5000 &amp;nbsp; &amp;nbsp; .&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;Thanks anyway for trying !&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;Onizuka &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2019 07:15:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Change-variable-name-not-so-easy/m-p/550135#M152736</guid>
      <dc:creator>Onizuka</dc:creator>
      <dc:date>2019-04-11T07:15:17Z</dc:date>
    </item>
    <item>
      <title>Re: Change variable name (not so easy)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Change-variable-name-not-so-easy/m-p/550136#M152737</link>
      <description>&lt;P&gt;just klick on your name and you see everything you have posted, the list contains this topics clone.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2019 07:27:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Change-variable-name-not-so-easy/m-p/550136#M152737</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2019-04-11T07:27:42Z</dc:date>
    </item>
    <item>
      <title>Re: Change variable name (not so easy)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Change-variable-name-not-so-easy/m-p/550137#M152738</link>
      <description>&lt;P&gt;Ok, thank you, but i think there was a weird bug because when I try to edit my post it just leave the page and then when i came back to "Home / SAS Programming / Programming" my topic wasn't here anymore .. I should have tried to see my profile.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good afternoon and sorry for the inconvenience.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Onizuka&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2019 07:44:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Change-variable-name-not-so-easy/m-p/550137#M152738</guid>
      <dc:creator>Onizuka</dc:creator>
      <dc:date>2019-04-11T07:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: Change variable name (not so easy)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Change-variable-name-not-so-easy/m-p/550444#M152822</link>
      <description>&lt;P&gt;&lt;EM&gt;&amp;gt; Your solution doesn't answer to my problem because all values (characters values) have to be invert !&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Oh I see.&lt;/P&gt;
&lt;P&gt;Sorry I only looked at the values in red.&lt;/P&gt;
&lt;P&gt;This then:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data HAVE;
  input LEVEL CNIV1 CNIV2 CNIV3 CNIV4 CNIV5 CNIV6 CNIV7 CNIV8 ;
cards;
5 5000 30 600  500  5 . . .
7 5000 30 600  500  5 30 4400 .
6 1 2 3 4 5 6 . .
5 1 2 3 4 5 . . .
run;

data WANT;
  set HAVE;
  array CNIV (*) CNIV1-CNIV8;
  do I=1 to int(LEVEL/2);
    TMP             = CNIV[I];
    CNIV[I]         = CNIV[LEVEL-I+1];
    CNIV[LEVEL-I+1] = TMP;
  end;
  drop TMP I;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;DIV class="branch"&gt;
&lt;DIV&gt;
&lt;DIV align="left"&gt;
&lt;TABLE class="table" summary="Procedure Print: Data Set WORK.WANT" frame="box" rules="all" cellspacing="0" cellpadding="5"&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="r header" scope="col"&gt;LEVEL&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;CNIV1&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;CNIV2&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;CNIV3&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;CNIV4&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;CNIV5&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;CNIV6&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;CNIV7&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;CNIV8&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class="r data"&gt;5&lt;/TD&gt;
&lt;TD class="r data"&gt;5&lt;/TD&gt;
&lt;TD class="r data"&gt;500&lt;/TD&gt;
&lt;TD class="r data"&gt;600&lt;/TD&gt;
&lt;TD class="r data"&gt;30&lt;/TD&gt;
&lt;TD class="r data"&gt;5000&lt;/TD&gt;
&lt;TD class="r data"&gt;.&lt;/TD&gt;
&lt;TD class="r data"&gt;.&lt;/TD&gt;
&lt;TD class="r data"&gt;.&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="r data"&gt;7&lt;/TD&gt;
&lt;TD class="r data"&gt;4400&lt;/TD&gt;
&lt;TD class="r data"&gt;30&lt;/TD&gt;
&lt;TD class="r data"&gt;5&lt;/TD&gt;
&lt;TD class="r data"&gt;500&lt;/TD&gt;
&lt;TD class="r data"&gt;600&lt;/TD&gt;
&lt;TD class="r data"&gt;30&lt;/TD&gt;
&lt;TD class="r data"&gt;5000&lt;/TD&gt;
&lt;TD class="r data"&gt;.&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="r data"&gt;6&lt;/TD&gt;
&lt;TD class="r data"&gt;6&lt;/TD&gt;
&lt;TD class="r data"&gt;5&lt;/TD&gt;
&lt;TD class="r data"&gt;4&lt;/TD&gt;
&lt;TD class="r data"&gt;3&lt;/TD&gt;
&lt;TD class="r data"&gt;2&lt;/TD&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;TD class="r data"&gt;.&lt;/TD&gt;
&lt;TD class="r data"&gt;.&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="r data"&gt;5&lt;/TD&gt;
&lt;TD class="r data"&gt;5&lt;/TD&gt;
&lt;TD class="r data"&gt;4&lt;/TD&gt;
&lt;TD class="r data"&gt;3&lt;/TD&gt;
&lt;TD class="r data"&gt;2&lt;/TD&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;TD class="r data"&gt;.&lt;/TD&gt;
&lt;TD class="r data"&gt;.&lt;/TD&gt;
&lt;TD class="r data"&gt;.&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2019 21:54:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Change-variable-name-not-so-easy/m-p/550444#M152822</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-04-11T21:54:56Z</dc:date>
    </item>
    <item>
      <title>Re: Change variable name (not so easy)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Change-variable-name-not-so-easy/m-p/550447#M152824</link>
      <description>&lt;P&gt;Another case where a &lt;A href="https://communities.sas.com/t5/SASware-Ballot-Ideas/Create-a-new-function-SWAP/idi-p/327598" target="_self"&gt;SWAP function&lt;/A&gt; would be nice to have.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2019 21:58:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Change-variable-name-not-so-easy/m-p/550447#M152824</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-04-11T21:58:30Z</dc:date>
    </item>
    <item>
      <title>Re: Change variable name (not so easy)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Change-variable-name-not-so-easy/m-p/550512#M152855</link>
      <description>&lt;P&gt;Hello Chris, no problem haha thank you !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You could not know because I have two topics open on the same subject (not very practical I know) but I complicated the problem (not for pleasure) ... !!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Imagine I have :&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data HAVE;
  input LEVEL CNIV1 CNIV2 CNIV3 CNIV4 CNIV5 CNIV6 CNIV7 CNIV8 ;
cards;
5 5000 30 600  500  5 . . .
7 5000 30 600  500  5 30 4400 .
5 1 . 3 . 5 . . .  /* 5 levels but 2 missing values */
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;And if I want to keep the missing values like you can see on this output just below. You can see for the last line, it inverse the values but keeping the missing values.. This is to deal with the case where a society that has 5 hierarchy level transmits the data with 2 missing levels (it's an example of course).. I don't know if you have any ideas ..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/28641i2C966DD08213EC3E/image-size/large?v=1.0&amp;amp;px=600" alt="Capture.PNG" title="Capture.PNG" border="0" /&gt;&lt;/P&gt;&lt;P&gt;Thank you a lot and good morning to you !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Onizuka&lt;/P&gt;</description>
      <pubDate>Fri, 12 Apr 2019 07:08:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Change-variable-name-not-so-easy/m-p/550512#M152855</guid>
      <dc:creator>Onizuka</dc:creator>
      <dc:date>2019-04-12T07:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: Change variable name (not so easy)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Change-variable-name-not-so-easy/m-p/550525#M152859</link>
      <description>&lt;P&gt;Chris,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems that Mister Kurt found the solution, i'm going to test it adding some missing values. Thank to you for your time and you work &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I put here the link to the other subject.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Programming/change-variable-names-not-so-easy/td-p/549898/highlight/false" target="_blank"&gt;https://communities.sas.com/t5/SAS-Programming/change-variable-names-not-so-easy/td-p/549898/highlight/false&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Apr 2019 07:42:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Change-variable-name-not-so-easy/m-p/550525#M152859</guid>
      <dc:creator>Onizuka</dc:creator>
      <dc:date>2019-04-12T07:42:15Z</dc:date>
    </item>
  </channel>
</rss>

