<?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 Make Column Name Change on Output file Remain in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Make-Column-Name-Change-on-Output-file-Remain/m-p/563683#M33893</link>
    <description>&lt;P&gt;On my output file, I am changing the name of my columns and building a query using the output dataset file using the new column name.&amp;nbsp; I see the new column name in the output of the new query I am using.&amp;nbsp; However, when I run the entire project, the column name change is not permanent.&amp;nbsp; Can I make it a permanant column name change?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm changing the column name in the SAS output by first unprotecting the data, then going to properties window and typing in a new name.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 05 Jun 2019 12:13:33 GMT</pubDate>
    <dc:creator>req41273</dc:creator>
    <dc:date>2019-06-05T12:13:33Z</dc:date>
    <item>
      <title>Make Column Name Change on Output file Remain</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Make-Column-Name-Change-on-Output-file-Remain/m-p/563683#M33893</link>
      <description>&lt;P&gt;On my output file, I am changing the name of my columns and building a query using the output dataset file using the new column name.&amp;nbsp; I see the new column name in the output of the new query I am using.&amp;nbsp; However, when I run the entire project, the column name change is not permanent.&amp;nbsp; Can I make it a permanant column name change?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm changing the column name in the SAS output by first unprotecting the data, then going to properties window and typing in a new name.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 12:13:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Make-Column-Name-Change-on-Output-file-Remain/m-p/563683#M33893</guid>
      <dc:creator>req41273</dc:creator>
      <dc:date>2019-06-05T12:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: Make Column Name Change on Output file Remain</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Make-Column-Name-Change-on-Output-file-Remain/m-p/563693#M33894</link>
      <description>&lt;P&gt;Without knowing your procedures, it's difficult to know exactly what you coded. However, if all you want to do is to permanently rename column(s), you can consider either:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc dataset lib=libname;
modify target_dataset;
rename old_var_name = new_var_name;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;or in a proc sql step:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
select old_var1 as new_var1_name, 
           old_var2 as new_var2_name

from target_dataset;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 05 Jun 2019 13:28:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Make-Column-Name-Change-on-Output-file-Remain/m-p/563693#M33894</guid>
      <dc:creator>aaronh</dc:creator>
      <dc:date>2019-06-05T13:28:55Z</dc:date>
    </item>
    <item>
      <title>Re: Make Column Name Change on Output file Remain</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Make-Column-Name-Change-on-Output-file-Remain/m-p/563697#M33895</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/275828"&gt;@req41273&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;BR /&gt;I'm changing the column name in the SAS output by first unprotecting the data, then going to properties window and typing in a new name.&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Since this manual action is not recorded anywhere as a task in your project, it won't have any permanent effect.&lt;/P&gt;
&lt;P&gt;Depending on how the dataset is created, there are numerous options to set the intended names.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 13:40:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Make-Column-Name-Change-on-Output-file-Remain/m-p/563697#M33895</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-06-05T13:40:30Z</dc:date>
    </item>
    <item>
      <title>Re: Make Column Name Change on Output file Remain</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Make-Column-Name-Change-on-Output-file-Remain/m-p/563740#M33896</link>
      <description>There's a section in query builder itself to rename the new variables or change the name of a calculated variable. Ensure you're doing that within query builder not by manually changing the name in the sheet. That is manual and would need to be done every time.</description>
      <pubDate>Wed, 05 Jun 2019 16:01:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Make-Column-Name-Change-on-Output-file-Remain/m-p/563740#M33896</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-06-05T16:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: Make Column Name Change on Output file Remain</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Make-Column-Name-Change-on-Output-file-Remain/m-p/563828#M33897</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;where in query builder can this be done.&amp;nbsp; Can you send me a step by step action on how to do this or a screen print?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 18:47:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Make-Column-Name-Change-on-Output-file-Remain/m-p/563828#M33897</guid>
      <dc:creator>req41273</dc:creator>
      <dc:date>2019-06-05T18:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: Make Column Name Change on Output file Remain</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Make-Column-Name-Change-on-Output-file-Remain/m-p/563831#M33898</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;where in query builder can this be done.&amp;nbsp; Can you send me a step by step action on how to do this or a screen print&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 18:48:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Make-Column-Name-Change-on-Output-file-Remain/m-p/563831#M33898</guid>
      <dc:creator>req41273</dc:creator>
      <dc:date>2019-06-05T18:48:33Z</dc:date>
    </item>
    <item>
      <title>Re: Make Column Name Change on Output file Remain</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Make-Column-Name-Change-on-Output-file-Remain/m-p/563832#M33899</link>
      <description>&lt;P&gt;I've only seen where you can rename if it's a computed column, this column is not a computed column&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 18:51:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Make-Column-Name-Change-on-Output-file-Remain/m-p/563832#M33899</guid>
      <dc:creator>req41273</dc:creator>
      <dc:date>2019-06-05T18:51:04Z</dc:date>
    </item>
    <item>
      <title>Re: Make Column Name Change on Output file Remain</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Make-Column-Name-Change-on-Output-file-Remain/m-p/563850#M33900</link>
      <description>&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I found it.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 19:38:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Make-Column-Name-Change-on-Output-file-Remain/m-p/563850#M33900</guid>
      <dc:creator>req41273</dc:creator>
      <dc:date>2019-06-05T19:38:30Z</dc:date>
    </item>
    <item>
      <title>Re: Make Column Name Change on Output file Remain</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Make-Column-Name-Change-on-Output-file-Remain/m-p/563860#M33901</link>
      <description>Please post the answer for future users, especially if you're going to mark your comment as the answer. The solved is to help people who are searching find what the correct solution was quickly without reading through all the posts.</description>
      <pubDate>Wed, 05 Jun 2019 19:47:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Make-Column-Name-Change-on-Output-file-Remain/m-p/563860#M33901</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-06-05T19:47:47Z</dc:date>
    </item>
    <item>
      <title>Re: Make Column Name Change on Output file Remain</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Make-Column-Name-Change-on-Output-file-Remain/m-p/563968#M33911</link>
      <description>&lt;P&gt;This&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/275828"&gt;@req41273&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I found it.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;is NOT a solution. Please post what you have really done, so others can profit from it. You got help here, so help others get help also.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2019 05:27:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Make-Column-Name-Change-on-Output-file-Remain/m-p/563968#M33911</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-06-06T05:27:56Z</dc:date>
    </item>
  </channel>
</rss>

