<?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: How to Change Variable name in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-Change-Variable-name/m-p/459025#M116536</link>
    <description>&lt;P&gt;Have you tried:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data want;&lt;/P&gt;
&lt;P&gt;retain total_count;&lt;/P&gt;
&lt;P&gt;set have;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;</description>
    <pubDate>Tue, 01 May 2018 16:16:42 GMT</pubDate>
    <dc:creator>Astounding</dc:creator>
    <dc:date>2018-05-01T16:16:42Z</dc:date>
    <item>
      <title>How to Change Variable name</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Change-Variable-name/m-p/459023#M116534</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I need a help changing the Variable name from upper case to Lower case, but not the values in that column. I have more than 200 columns and one of them needs to be in lower case instead of upper case. Example ( TOTAL_COUNT&amp;nbsp; to total_count) I only have the dataset available.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for looking.&lt;/P&gt;</description>
      <pubDate>Tue, 01 May 2018 16:10:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Change-Variable-name/m-p/459023#M116534</guid>
      <dc:creator>Kalai2008</dc:creator>
      <dc:date>2018-05-01T16:10:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to Change Variable name</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Change-Variable-name/m-p/459025#M116536</link>
      <description>&lt;P&gt;Have you tried:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data want;&lt;/P&gt;
&lt;P&gt;retain total_count;&lt;/P&gt;
&lt;P&gt;set have;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;</description>
      <pubDate>Tue, 01 May 2018 16:16:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Change-Variable-name/m-p/459025#M116536</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-05-01T16:16:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to Change Variable name</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Change-Variable-name/m-p/459027#M116538</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc contents data =have out=_have;
run;

proc sql;
select lowcase(name) into : name separated by ' '
from _have;
quit;

data want;
retain &amp;amp;name;
set have;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 01 May 2018 16:22:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Change-Variable-name/m-p/459027#M116538</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-05-01T16:22:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to Change Variable name</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Change-Variable-name/m-p/459028#M116539</link>
      <description>&lt;P&gt;Awesome !Thank you so much..It worked !&lt;/P&gt;</description>
      <pubDate>Tue, 01 May 2018 16:25:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Change-Variable-name/m-p/459028#M116539</guid>
      <dc:creator>Kalai2008</dc:creator>
      <dc:date>2018-05-01T16:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to Change Variable name</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Change-Variable-name/m-p/459029#M116540</link>
      <description>&lt;P&gt;Thank you so much.. It worked&lt;/P&gt;</description>
      <pubDate>Tue, 01 May 2018 16:27:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Change-Variable-name/m-p/459029#M116540</guid>
      <dc:creator>Kalai2008</dc:creator>
      <dc:date>2018-05-01T16:27:05Z</dc:date>
    </item>
  </channel>
</rss>

