<?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 format date when creating a dataset? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520417#M141111</link>
    <description>&lt;P&gt;First off: What two datasets? I see only one?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can rename the date variable&amp;nbsp;in another data set like this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Advanced;
input name $ date:mmddyy10.;
format date mmddyy10.;
datalines;
CAMPBELL 12/01/2012
COOK 03/01/2011
EDWARDS 02/01/2013
MORRIS 02/04/2013
PEREZ 06/01/2011
ROGERS 07/01/2012
SANCHEZ 09/01/2012
STEWART 1/19/2013
TURNER 05/01/2011
;

data OtherData;
   set Advanced(rename=(date=date2));
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 11 Dec 2018 16:01:53 GMT</pubDate>
    <dc:creator>PeterClemmensen</dc:creator>
    <dc:date>2018-12-11T16:01:53Z</dc:date>
    <item>
      <title>How to format date when creating a dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520408#M141106</link>
      <description>&lt;P&gt;I am trying to create a dataset that has two variables, one of which is a date field. The code I have is below, but the output only puts a "." in the date column. Can someone help me with this formatting issue?&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Advanced;
input name $ date;
format date mmddyy10;
datalines;
CAMPBELL 12/01/2012
COOK 03/01/2011
EDWARDS 02/01/2013
MORRIS 02/04/2013
PEREZ 06/01/2011
ROGERS 07/01/2012
SANCHEZ 09/01/2012
STEWART 1/19/2013
TURNER 05/01/2011
;

proc sort data=Advanced;
   by name;
run;  &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 11 Dec 2018 15:43:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520408#M141106</guid>
      <dc:creator>sasnewbie5</dc:creator>
      <dc:date>2018-12-11T15:43:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to format date when creating a dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520411#M141108</link>
      <description>&lt;P&gt;Use an appropriate informat and remember a period after the format name like this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Advanced;
input name $ date:mmddyy10.;
format date mmddyy10.;
datalines;
CAMPBELL 12/01/2012
COOK 03/01/2011
EDWARDS 02/01/2013
MORRIS 02/04/2013
PEREZ 06/01/2011
ROGERS 07/01/2012
SANCHEZ 09/01/2012
STEWART 1/19/2013
TURNER 05/01/2011
;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 15:51:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520411#M141108</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2018-12-11T15:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to format date when creating a dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520415#M141110</link>
      <description>&lt;P&gt;Thank you! So if I wanted to merge the two datasets, how could I do so since they both have the same "date" variable? I just merged them but some of the dates have a "." in the cell. I've heard of the rename function but haven't been able to quite figure out how to incorporate it into my SAS code.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 15:56:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520415#M141110</guid>
      <dc:creator>sasnewbie5</dc:creator>
      <dc:date>2018-12-11T15:56:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to format date when creating a dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520417#M141111</link>
      <description>&lt;P&gt;First off: What two datasets? I see only one?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can rename the date variable&amp;nbsp;in another data set like this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Advanced;
input name $ date:mmddyy10.;
format date mmddyy10.;
datalines;
CAMPBELL 12/01/2012
COOK 03/01/2011
EDWARDS 02/01/2013
MORRIS 02/04/2013
PEREZ 06/01/2011
ROGERS 07/01/2012
SANCHEZ 09/01/2012
STEWART 1/19/2013
TURNER 05/01/2011
;

data OtherData;
   set Advanced(rename=(date=date2));
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 16:01:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520417#M141111</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2018-12-11T16:01:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to format date when creating a dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520420#M141113</link>
      <description>&lt;P&gt;The second data set is as follows:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Base;
input name $ date:mmddyy10.;
format date mmddyy10.;

datalines;
CAMPBELL 01/01/2008
CARTER 11/01/2009
COLLINS 02/01/2005
COOK 06/01/2010
EDWARDS 06/01/2010
EVANS 05/01/2009
MITCHELL 12/01/2010
MORRIS 11/01/2012
NELSON 08/01/2010
PEREZ 02/01/2008
PHILLIPS 01/01/2011
ROGERS 10/01/2008
SANCHEZ 11/01/2009
STEWART 03/01/2012
TURNER 02/01/2006
;

proc sort data=Base;
   by name;
run; &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I was able to get that date formatted as well using the code you provided (thanks again so much for that!).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm ultimately trying to merge three datasets to create a list of employees that have passed both the base and advanced certifications (the base/advanced datasets are the ones already provided). For the life of me I can't seem to figure this one out since the output I have still shows all total employees, not just the ones that have both certifications.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code I have to merge the three of them is as follows:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Both;
	merge Employee Advanced Base;
	by name;
	keep name date salary;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;If you could provide any assistance on this I would be super grateful!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 16:07:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520420#M141113</guid>
      <dc:creator>sasnewbie5</dc:creator>
      <dc:date>2018-12-11T16:07:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to format date when creating a dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520421#M141114</link>
      <description>&lt;P&gt;So you have three data sets you want to put together? &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Then post all three and let's have a look?&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 16:08:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520421#M141114</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2018-12-11T16:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to format date when creating a dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520422#M141115</link>
      <description>&lt;P&gt;Below is all of the code that created the three datasets. What I need to adjust is the last portion that merges the three to show only the people that have both certifications. So a final dataset that shows &lt;SPAN&gt;the employees’ names, both certification dates, and their salaries.&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/***Problem #1***/
data Dept1Names;
input name $ empid $;
datalines;
NELSON 254
MITCHELL 362
PEREZ 910
CARTER 935
;
data Dept1Salaries;
input salary  id $;
datalines;
103100 254
100200 362
73500 910
88400 935
;

data Dept1;
merge Dept1Names Dept1Salaries;
keep name salary;
run;

/***Problem #2***/	
data Dept2;
input name $ salary;
datalines;
ROBERTS 74000
TURNER 89200
PHILLIPS 87000
CAMPBELL 104600
PARKER 87800
EVANS 73100
EDWARDS 72300
COLLINS 100500
;


data Dept3;
input name $ salary;
datalines;
STEWART 102600
SANCHEZ 103300
MORRIS 87200
ROGERS 70700
REED 73000
COOK 88900
;

data Employee;
	set Dept1 Dept2 Dept3;
	proc sort data = Employee;
		by name;
run;	

/***Problem #3***/
data Advanced;
input name $ date:mmddyy10.;
format date mmddyy10.;
datalines;
CAMPBELL 12/01/2012
COOK 03/01/2011
EDWARDS 02/01/2013
MORRIS 02/04/2013
PEREZ 06/01/2011
ROGERS 07/01/2012
SANCHEZ 09/01/2012
STEWART 1/19/2013
TURNER 05/01/2011
;

proc sort data=Advanced;
   by name;
run;   

data Base;
input name $ date:mmddyy10.;
format date mmddyy10.;

datalines;
CAMPBELL 01/01/2008
CARTER 11/01/2009
COLLINS 02/01/2005
COOK 06/01/2010
EDWARDS 06/01/2010
EVANS 05/01/2009
MITCHELL 12/01/2010
MORRIS 11/01/2012
NELSON 08/01/2010
PEREZ 02/01/2008
PHILLIPS 01/01/2011
ROGERS 10/01/2008
SANCHEZ 11/01/2009
STEWART 03/01/2012
TURNER 02/01/2006
;

proc sort data=Base;
   by name;
run; 

data Both;
	merge Employee Advanced Base;
	by name;
	keep name date salary;
run;	&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 11 Dec 2018 16:16:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520422#M141115</guid>
      <dc:creator>sasnewbie5</dc:creator>
      <dc:date>2018-12-11T16:16:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to format date when creating a dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520428#M141116</link>
      <description>&lt;P&gt;If I understand you correctly, this gives you what you want &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;PRE&gt;&lt;CODE class=" language-sas"&gt;data Both;
	merge Employee Advanced(in=ad) Base(in=ba);
	by name;
	keep name date salary;
   if ad &amp;amp; ba;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 11 Dec 2018 16:42:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520428#M141116</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2018-12-11T16:42:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to format date when creating a dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520430#M141117</link>
      <description>&lt;P&gt;How would I be able to include both dates (base and advanced certification date)? I tried using the rename function in the Advanced table but had no luck. Including both dates would give me exactly what I'm looking for.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 16:44:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520430#M141117</guid>
      <dc:creator>sasnewbie5</dc:creator>
      <dc:date>2018-12-11T16:44:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to format date when creating a dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520433#M141118</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/227522"&gt;@sasnewbie5&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;How would I be able to include both dates (base and advanced certification date)? I tried using the rename function in the Advanced table but had no luck. Including both dates would give me exactly what I'm looking for.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Basically to keep different values for like named variable RENAME one of them. Either prior to the merge or as a data set option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data want;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; merge set1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set2 (rename=(date=certificationdate))&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or similar. If you have the same named variable on multiple sets then rename each one that you don't want to overwrite.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 16:48:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520433#M141118</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-12-11T16:48:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to format date when creating a dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520435#M141119</link>
      <description>&lt;P&gt;Do like this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
data Both;
	merge Employee Advanced(in=ad rename=(date=advanceddate)) Base(in=ba rename=(date=basedate));
	by name;
	keep name basedate advanceddate salary;
   if ad &amp;amp; ba;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 11 Dec 2018 16:59:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520435#M141119</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2018-12-11T16:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to format date when creating a dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520441#M141122</link>
      <description>&lt;P&gt;Perfect! Perhaps you can help me with this last part that pertains to this dataset. Based on the newly created dataset "Both", I need to determine which employees are eligible for a 1% bonus.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;SAS certifications are only valid for seven years. Any certification tests passed over seven years ago from today’s date are expired. I need to eliminate employees that have expired certifications in either the Base or Advanced tests. Then I need to output the remaining employees’ names, certification dates, and their bonuses to the output window using appropriate date and dollar formats.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Could you assist with this?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 17:00:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520441#M141122</guid>
      <dc:creator>sasnewbie5</dc:creator>
      <dc:date>2018-12-11T17:00:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to format date when creating a dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520457#M141129</link>
      <description>&lt;P&gt;I know that only 2&amp;nbsp;of the employees (Morris and Steward) should get the bonus, but I'm not getting how to write a code to execute this.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 17:58:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520457#M141129</guid>
      <dc:creator>sasnewbie5</dc:creator>
      <dc:date>2018-12-11T17:58:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to format date when creating a dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520567#M141177</link>
      <description>&lt;P&gt;You can do it like this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Bonus;
   set Both;
   Bonus=.01*salary;
   if intck('year', advanceddate, today()) le 7 and intck('year', basedate, today()) le 7;
   format Bonus dollar10.;
run;

proc print data=Bonus;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 11 Dec 2018 21:17:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520567#M141177</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2018-12-11T21:17:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to format date when creating a dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520573#M141181</link>
      <description>&lt;P&gt;Also, let me point out that the creation of &lt;STRONG&gt;Both&amp;nbsp;&lt;/STRONG&gt;is a nice place to take advantage of the hash object. Like this, you surpass both of the PROC SORT steps previously.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Both_Hash(drop=rc:);
   if 0 then set Advanced(rename=(date=advanceddate)) Base(rename=(date=basedate));
   if _N_ = 1 then do;
      declare hash adv(dataset:'Advanced(rename=(date=advanceddate))');
      adv.defineKey('name');
      adv.defineData('advanceddate');
      adv.defineDone();

      declare hash bas(dataset:'Base(rename=(date=basedate))');
      bas.defineKey('name');
      bas.defineData('basedate');
      bas.defineDone();
   end;

   set Employee;

   rc1=adv.find();
   rc2=bas.find();

   if rc1=0 &amp;amp; rc2=0;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 11 Dec 2018 21:22:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520573#M141181</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2018-12-11T21:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to format date when creating a dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520574#M141182</link>
      <description>&lt;P&gt;That's good to know! I'm still learning about SAS but I definitely want to ensure I work smarter and not harder in regards to writing SAS code. Thanks for the tip!&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 21:23:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520574#M141182</guid>
      <dc:creator>sasnewbie5</dc:creator>
      <dc:date>2018-12-11T21:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to format date when creating a dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520584#M141187</link>
      <description>&lt;P&gt;Anytime. Glad you found your solution &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 21:33:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-format-date-when-creating-a-dataset/m-p/520584#M141187</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2018-12-11T21:33:06Z</dc:date>
    </item>
  </channel>
</rss>

