<?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: rename variable and amend date format in same variable in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/rename-variable-and-amend-date-format-in-same-variable/m-p/369114#M88077</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
set have (rename=(systemdate=todaysdate));
format todaysdate ddmmyy10.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If your dataset is large and you do not need to preserve its original status, consider using proc datasets.&lt;/P&gt;</description>
    <pubDate>Wed, 21 Jun 2017 12:23:58 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2017-06-21T12:23:58Z</dc:date>
    <item>
      <title>rename variable and amend date format in same variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/rename-variable-and-amend-date-format-in-same-variable/m-p/369107#M88071</link>
      <description>&lt;P&gt;Hi I have a column called SystemDate with a date format yymmdd8 and the date is being displayed&amp;nbsp; 06-08-10 I would like to rename the column&amp;nbsp;to Todaysdate and have the date format DDMMYY10 10/08/2006. How would I go about changing the format of the date?&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2017 12:12:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/rename-variable-and-amend-date-format-in-same-variable/m-p/369107#M88071</guid>
      <dc:creator>zdassu</dc:creator>
      <dc:date>2017-06-21T12:12:52Z</dc:date>
    </item>
    <item>
      <title>Re: rename variable and amend date format in same variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/rename-variable-and-amend-date-format-in-same-variable/m-p/369109#M88073</link>
      <description>&lt;PRE&gt;data want;
  set have (rename=(systemdate=todaysdate));
  format todaysdate ddmmyy10.;
run;&lt;/PRE&gt;</description>
      <pubDate>Wed, 21 Jun 2017 12:19:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/rename-variable-and-amend-date-format-in-same-variable/m-p/369109#M88073</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-06-21T12:19:58Z</dc:date>
    </item>
    <item>
      <title>Re: rename variable and amend date format in same variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/rename-variable-and-amend-date-format-in-same-variable/m-p/369111#M88075</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA have;
   systemDate="10AUG2006"d;
   format systemdate yymmdd8.;
RUN;

DATA want;
   SET have(rename=(SystemDate=Todaysdate));
   format Todaysdate DDMMYY10.;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 21 Jun 2017 12:23:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/rename-variable-and-amend-date-format-in-same-variable/m-p/369111#M88075</guid>
      <dc:creator>Oligolas</dc:creator>
      <dc:date>2017-06-21T12:23:32Z</dc:date>
    </item>
    <item>
      <title>Re: rename variable and amend date format in same variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/rename-variable-and-amend-date-format-in-same-variable/m-p/369114#M88077</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
set have (rename=(systemdate=todaysdate));
format todaysdate ddmmyy10.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If your dataset is large and you do not need to preserve its original status, consider using proc datasets.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2017 12:23:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/rename-variable-and-amend-date-format-in-same-variable/m-p/369114#M88077</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-06-21T12:23:58Z</dc:date>
    </item>
  </channel>
</rss>

