<?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: date manipulation from SAS datetime field in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/date-manipulation-from-SAS-datetime-field/m-p/651911#M195640</link>
    <description>&lt;P&gt;You need the INTNX function and increment by 0 months but advance it to the beginning of the month.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data have ;
   input havedate:mmddyy10. ;
   cards ;
01/04/2017
02/01/2017
04/20/2017
;
run ;

data want ;
   set have ;
   format havedate wantdate mmddyy10. ;
   wantdate = intnx("month",havedate,0,"b") ;
run ;

proc print ;
run ;
      &lt;/PRE&gt;
&lt;TABLE class="table" style="border-collapse: collapse; border-image-outset: 0; border-image-repeat: stretch; border-image-slice: 100%; border-image-source: none; border-image-width: 1; border-spacing: 0px; color: #000000; font-family: Arial,&amp;amp;quot; albany amt&amp;amp;quot;,helvetica,helv; font-size: 10.06px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; margin-bottom: 1em; margin-left: auto; margin-right: auto; orphans: 2; text-align: center; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; border-width: 1px 0px 0px 1px; border-color: #c1c1c1; border-style: solid;" aria-label="Data Set WORK.WANT"&gt;
&lt;THEAD&gt;
&lt;TR style="border-bottom-color: #c1c1c1; border-bottom-style: solid; border-bottom-width: 0px; border-top-color: #c1c1c1; border-top-style: solid; border-top-width: 1px;"&gt;
&lt;TH class="r header" style="background-color: #edf2f9; color: #112277; font-family: Arial,&amp;amp;quot; albany amt&amp;amp;quot;,helvetica,helv; font-size: x-small; font-style: normal; font-weight: bold; text-align: right; vertical-align: top; border-width: 0px 1px 1px 0px; border-color: #b0b7bb; border-style: solid; padding: 3px 6px 3px 6px;" scope="col"&gt;Obs&lt;/TH&gt;
&lt;TH class="r header" style="background-color: #edf2f9; color: #112277; font-family: Arial,&amp;amp;quot; albany amt&amp;amp;quot;,helvetica,helv; font-size: x-small; font-style: normal; font-weight: bold; text-align: right; vertical-align: top; border-width: 0px 1px 1px 0px; border-color: #b0b7bb; border-style: solid; padding: 3px 6px 3px 6px;" scope="col"&gt;havedate&lt;/TH&gt;
&lt;TH class="r header" style="background-color: #edf2f9; color: #112277; font-family: Arial,&amp;amp;quot; albany amt&amp;amp;quot;,helvetica,helv; font-size: x-small; font-style: normal; font-weight: bold; text-align: right; vertical-align: top; border-width: 0px 1px 1px 0px; border-color: #b0b7bb; border-style: solid; padding: 3px 6px 3px 6px;" scope="col"&gt;wantdate&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR style="border-bottom-color: #c1c1c1; border-bottom-style: solid; border-bottom-width: 0px; border-top-color: #c1c1c1; border-top-style: solid; border-top-width: 1px;"&gt;
&lt;TH class="r rowheader" style="background-color: #edf2f9; color: #112277; font-family: Arial,&amp;amp;quot; albany amt&amp;amp;quot;,helvetica,helv; font-size: x-small; font-style: normal; font-weight: bold; text-align: right; vertical-align: top; border-width: 0px 1px 1px 0px; border-color: #b0b7bb; border-style: solid; padding: 3px 6px 3px 6px;" scope="row"&gt;1&lt;/TH&gt;
&lt;TD class="r data" style="background-color: #ffffff; font-family: Arial,&amp;amp;quot; albany amt&amp;amp;quot;,helvetica,helv; font-size: x-small; font-style: normal; font-weight: normal; text-align: right; vertical-align: top; border-width: 0px 1px 1px 0px; border-color: #c1c1c1; border-style: solid; padding: 3px 6px 3px 6px;"&gt;01/04/2017&lt;/TD&gt;
&lt;TD class="r data" style="background-color: #ffffff; font-family: Arial,&amp;amp;quot; albany amt&amp;amp;quot;,helvetica,helv; font-size: x-small; font-style: normal; font-weight: normal; text-align: right; vertical-align: top; border-width: 0px 1px 1px 0px; border-color: #c1c1c1; border-style: solid; padding: 3px 6px 3px 6px;"&gt;01/01/2017&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="border-bottom-color: #c1c1c1; border-bottom-style: solid; border-bottom-width: 0px; border-top-color: #c1c1c1; border-top-style: solid; border-top-width: 1px;"&gt;
&lt;TH class="r rowheader" style="background-color: #edf2f9; color: #112277; font-family: Arial,&amp;amp;quot; albany amt&amp;amp;quot;,helvetica,helv; font-size: x-small; font-style: normal; font-weight: bold; text-align: right; vertical-align: top; border-width: 0px 1px 1px 0px; border-color: #b0b7bb; border-style: solid; padding: 3px 6px 3px 6px;" scope="row"&gt;2&lt;/TH&gt;
&lt;TD class="r data" style="background-color: #ffffff; font-family: Arial,&amp;amp;quot; albany amt&amp;amp;quot;,helvetica,helv; font-size: x-small; font-style: normal; font-weight: normal; text-align: right; vertical-align: top; border-width: 0px 1px 1px 0px; border-color: #c1c1c1; border-style: solid; padding: 3px 6px 3px 6px;"&gt;02/01/2017&lt;/TD&gt;
&lt;TD class="r data" style="background-color: #ffffff; font-family: Arial,&amp;amp;quot; albany amt&amp;amp;quot;,helvetica,helv; font-size: x-small; font-style: normal; font-weight: normal; text-align: right; vertical-align: top; border-width: 0px 1px 1px 0px; border-color: #c1c1c1; border-style: solid; padding: 3px 6px 3px 6px;"&gt;02/01/2017&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="border-bottom-color: #c1c1c1; border-bottom-style: solid; border-bottom-width: 0px; border-top-color: #c1c1c1; border-top-style: solid; border-top-width: 1px;"&gt;
&lt;TH class="r rowheader" style="background-color: #edf2f9; color: #112277; font-family: Arial,&amp;amp;quot; albany amt&amp;amp;quot;,helvetica,helv; font-size: x-small; font-style: normal; font-weight: bold; text-align: right; vertical-align: top; border-width: 0px 1px 1px 0px; border-color: #b0b7bb; border-style: solid; padding: 3px 6px 3px 6px;" scope="row"&gt;3&lt;/TH&gt;
&lt;TD class="r data" style="background-color: #ffffff; font-family: Arial,&amp;amp;quot; albany amt&amp;amp;quot;,helvetica,helv; font-size: x-small; font-style: normal; font-weight: normal; text-align: right; vertical-align: top; border-width: 0px 1px 1px 0px; border-color: #c1c1c1; border-style: solid; padding: 3px 6px 3px 6px;"&gt;04/20/2017&lt;/TD&gt;
&lt;TD class="r data" style="background-color: #ffffff; font-family: Arial,&amp;amp;quot; albany amt&amp;amp;quot;,helvetica,helv; font-size: x-small; font-style: normal; font-weight: normal; text-align: right; vertical-align: top; border-width: 0px 1px 1px 0px; border-color: #c1c1c1; border-style: solid; padding: 3px 6px 3px 6px;"&gt;04/01/2017&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
    <pubDate>Sat, 30 May 2020 02:59:09 GMT</pubDate>
    <dc:creator>biopharma</dc:creator>
    <dc:date>2020-05-30T02:59:09Z</dc:date>
    <item>
      <title>date manipulation from SAS datetime field</title>
      <link>https://communities.sas.com/t5/SAS-Programming/date-manipulation-from-SAS-datetime-field/m-p/359774#M84615</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to &amp;nbsp;get a format where for each month of a year, I would have a specific value. For example, I would 2nd January and 3rd February 2017 to be displayed as 01/01/2017 and 02/01/2017. Basically, irrespective of the actual date of month, I would like the date to be 1st of every month while the month number changes. Using&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Data constants;&lt;/P&gt;&lt;P&gt;date &amp;nbsp;= datepart (datetime);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc print data=constants;&lt;/P&gt;&lt;P&gt;format &lt;SPAN&gt;date&lt;/SPAN&gt; mmddyy10.&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I get 4th January 2017 as&amp;nbsp;01/04/2017, but I want it to be 01/01/2017. I.e. for any date in January, the output should be 01/01/2017. How can I achieve it? Is there any format for this? Would greatly appreciate your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Akhilesh&lt;/P&gt;</description>
      <pubDate>Thu, 18 May 2017 19:34:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/date-manipulation-from-SAS-datetime-field/m-p/359774#M84615</guid>
      <dc:creator>akhileshJoshi</dc:creator>
      <dc:date>2017-05-18T19:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: date manipulation from SAS datetime field</title>
      <link>https://communities.sas.com/t5/SAS-Programming/date-manipulation-from-SAS-datetime-field/m-p/359781#M84616</link>
      <description>format date ddmmyy10.</description>
      <pubDate>Thu, 18 May 2017 19:44:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/date-manipulation-from-SAS-datetime-field/m-p/359781#M84616</guid>
      <dc:creator>gauthamk28</dc:creator>
      <dc:date>2017-05-18T19:44:03Z</dc:date>
    </item>
    <item>
      <title>Re: date manipulation from SAS datetime field</title>
      <link>https://communities.sas.com/t5/SAS-Programming/date-manipulation-from-SAS-datetime-field/m-p/359786#M84617</link>
      <description>&lt;P&gt;Why not use a format that gives the right impression:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;format date yymmd7.;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That way, nobody will complain about representing different days as the "first" day of the month.&lt;/P&gt;</description>
      <pubDate>Thu, 18 May 2017 19:48:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/date-manipulation-from-SAS-datetime-field/m-p/359786#M84617</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2017-05-18T19:48:19Z</dc:date>
    </item>
    <item>
      <title>Re: date manipulation from SAS datetime field</title>
      <link>https://communities.sas.com/t5/SAS-Programming/date-manipulation-from-SAS-datetime-field/m-p/359790#M84618</link>
      <description>&lt;P&gt;I don't know of a format that would do it, but the INTNX function can do it:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data test;&lt;BR /&gt;&amp;nbsp; mydate = mdy(1,4,2017);&lt;BR /&gt;&amp;nbsp; newdate = intnx('month', mydate, 0, 'B');&lt;BR /&gt;&amp;nbsp; put mydate= mmddyy10. newdate= mmddyy10.;&lt;BR /&gt; run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="sasNote"&gt;log:&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;mydate=01/04/2017 newdate=01/01/2017&lt;/DIV&gt;</description>
      <pubDate>Thu, 18 May 2017 19:53:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/date-manipulation-from-SAS-datetime-field/m-p/359790#M84618</guid>
      <dc:creator>JasonDiVirgilio</dc:creator>
      <dc:date>2017-05-18T19:53:02Z</dc:date>
    </item>
    <item>
      <title>Re: date manipulation from SAS datetime field</title>
      <link>https://communities.sas.com/t5/SAS-Programming/date-manipulation-from-SAS-datetime-field/m-p/359801#M84624</link>
      <description>&lt;P&gt;That doesn't work Gautam. As I said, irrespective of the date being anything between 1 to 31, I want it to be 01.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3rd January 2017 should be 01/01/2017.&lt;/P&gt;&lt;P&gt;4th February 2017 should be 02/01/2017&lt;/P&gt;&lt;P&gt;8th March 2017 should be 03/01/2017.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Akhilesh&lt;/P&gt;</description>
      <pubDate>Thu, 18 May 2017 20:10:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/date-manipulation-from-SAS-datetime-field/m-p/359801#M84624</guid>
      <dc:creator>akhileshJoshi</dc:creator>
      <dc:date>2017-05-18T20:10:16Z</dc:date>
    </item>
    <item>
      <title>Re: date manipulation from SAS datetime field</title>
      <link>https://communities.sas.com/t5/SAS-Programming/date-manipulation-from-SAS-datetime-field/m-p/359807#M84628</link>
      <description>&lt;P&gt;Hi Jason,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The field from which I am trying to extract the values is a date field with format&amp;nbsp;DATETIME22.3. It doesn't accept the mdy arguement you mentioned.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Akhilesh&lt;/P&gt;</description>
      <pubDate>Thu, 18 May 2017 20:16:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/date-manipulation-from-SAS-datetime-field/m-p/359807#M84628</guid>
      <dc:creator>akhileshJoshi</dc:creator>
      <dc:date>2017-05-18T20:16:47Z</dc:date>
    </item>
    <item>
      <title>Re: date manipulation from SAS datetime field</title>
      <link>https://communities.sas.com/t5/SAS-Programming/date-manipulation-from-SAS-datetime-field/m-p/359812#M84631</link>
      <description>&lt;P&gt;That's fine..I was just trying to show you an example of how to use the INTNX function to do what you wanted:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Using:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;intnx('month', mydate, 0, 'B');&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;...where "mydate" is your date variable should give a date that is the beginning of the same month/year.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Good luck!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 18 May 2017 20:22:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/date-manipulation-from-SAS-datetime-field/m-p/359812#M84631</guid>
      <dc:creator>JasonDiVirgilio</dc:creator>
      <dc:date>2017-05-18T20:22:55Z</dc:date>
    </item>
    <item>
      <title>Re: date manipulation from SAS datetime field</title>
      <link>https://communities.sas.com/t5/SAS-Programming/date-manipulation-from-SAS-datetime-field/m-p/359826#M84641</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/136098"&gt;@akhileshJoshi&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hi Jason,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The field from which I am trying to extract the values is a date field with format&amp;nbsp;DATETIME22.3. It doesn't accept the mdy arguement you mentioned.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;
&lt;P&gt;Akhilesh&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;In SAS terminology that is very poor statement. Dates are a count of days since 1 Jan 1960. Datetimes are a count of Seconds. If you mix the terminology you will get poor recommendations.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When it comes to custom appearances then custom formats come into play. The Picture statement in Proc Format will allow you access all the components of a displayed variable in the way you want.&lt;/P&gt;
&lt;PRE&gt;proc format library=work;
picture dtfixed (default=10)
low-high = '%0m/01/%Y'  (datatype=datetime)
;
run;

data _null_;
   dt = '23JAN2017:12:15:23'dt;
   put dt dtfixed.;
run;&lt;/PRE&gt;
&lt;P&gt;will display that datetime value as 01/01/2017 (or any datetime as the first day of the month).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 May 2017 20:59:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/date-manipulation-from-SAS-datetime-field/m-p/359826#M84641</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-05-18T20:59:09Z</dc:date>
    </item>
    <item>
      <title>Re: date manipulation from SAS datetime field</title>
      <link>https://communities.sas.com/t5/SAS-Programming/date-manipulation-from-SAS-datetime-field/m-p/651911#M195640</link>
      <description>&lt;P&gt;You need the INTNX function and increment by 0 months but advance it to the beginning of the month.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data have ;
   input havedate:mmddyy10. ;
   cards ;
01/04/2017
02/01/2017
04/20/2017
;
run ;

data want ;
   set have ;
   format havedate wantdate mmddyy10. ;
   wantdate = intnx("month",havedate,0,"b") ;
run ;

proc print ;
run ;
      &lt;/PRE&gt;
&lt;TABLE class="table" style="border-collapse: collapse; border-image-outset: 0; border-image-repeat: stretch; border-image-slice: 100%; border-image-source: none; border-image-width: 1; border-spacing: 0px; color: #000000; font-family: Arial,&amp;amp;quot; albany amt&amp;amp;quot;,helvetica,helv; font-size: 10.06px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; margin-bottom: 1em; margin-left: auto; margin-right: auto; orphans: 2; text-align: center; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; border-width: 1px 0px 0px 1px; border-color: #c1c1c1; border-style: solid;" aria-label="Data Set WORK.WANT"&gt;
&lt;THEAD&gt;
&lt;TR style="border-bottom-color: #c1c1c1; border-bottom-style: solid; border-bottom-width: 0px; border-top-color: #c1c1c1; border-top-style: solid; border-top-width: 1px;"&gt;
&lt;TH class="r header" style="background-color: #edf2f9; color: #112277; font-family: Arial,&amp;amp;quot; albany amt&amp;amp;quot;,helvetica,helv; font-size: x-small; font-style: normal; font-weight: bold; text-align: right; vertical-align: top; border-width: 0px 1px 1px 0px; border-color: #b0b7bb; border-style: solid; padding: 3px 6px 3px 6px;" scope="col"&gt;Obs&lt;/TH&gt;
&lt;TH class="r header" style="background-color: #edf2f9; color: #112277; font-family: Arial,&amp;amp;quot; albany amt&amp;amp;quot;,helvetica,helv; font-size: x-small; font-style: normal; font-weight: bold; text-align: right; vertical-align: top; border-width: 0px 1px 1px 0px; border-color: #b0b7bb; border-style: solid; padding: 3px 6px 3px 6px;" scope="col"&gt;havedate&lt;/TH&gt;
&lt;TH class="r header" style="background-color: #edf2f9; color: #112277; font-family: Arial,&amp;amp;quot; albany amt&amp;amp;quot;,helvetica,helv; font-size: x-small; font-style: normal; font-weight: bold; text-align: right; vertical-align: top; border-width: 0px 1px 1px 0px; border-color: #b0b7bb; border-style: solid; padding: 3px 6px 3px 6px;" scope="col"&gt;wantdate&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR style="border-bottom-color: #c1c1c1; border-bottom-style: solid; border-bottom-width: 0px; border-top-color: #c1c1c1; border-top-style: solid; border-top-width: 1px;"&gt;
&lt;TH class="r rowheader" style="background-color: #edf2f9; color: #112277; font-family: Arial,&amp;amp;quot; albany amt&amp;amp;quot;,helvetica,helv; font-size: x-small; font-style: normal; font-weight: bold; text-align: right; vertical-align: top; border-width: 0px 1px 1px 0px; border-color: #b0b7bb; border-style: solid; padding: 3px 6px 3px 6px;" scope="row"&gt;1&lt;/TH&gt;
&lt;TD class="r data" style="background-color: #ffffff; font-family: Arial,&amp;amp;quot; albany amt&amp;amp;quot;,helvetica,helv; font-size: x-small; font-style: normal; font-weight: normal; text-align: right; vertical-align: top; border-width: 0px 1px 1px 0px; border-color: #c1c1c1; border-style: solid; padding: 3px 6px 3px 6px;"&gt;01/04/2017&lt;/TD&gt;
&lt;TD class="r data" style="background-color: #ffffff; font-family: Arial,&amp;amp;quot; albany amt&amp;amp;quot;,helvetica,helv; font-size: x-small; font-style: normal; font-weight: normal; text-align: right; vertical-align: top; border-width: 0px 1px 1px 0px; border-color: #c1c1c1; border-style: solid; padding: 3px 6px 3px 6px;"&gt;01/01/2017&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="border-bottom-color: #c1c1c1; border-bottom-style: solid; border-bottom-width: 0px; border-top-color: #c1c1c1; border-top-style: solid; border-top-width: 1px;"&gt;
&lt;TH class="r rowheader" style="background-color: #edf2f9; color: #112277; font-family: Arial,&amp;amp;quot; albany amt&amp;amp;quot;,helvetica,helv; font-size: x-small; font-style: normal; font-weight: bold; text-align: right; vertical-align: top; border-width: 0px 1px 1px 0px; border-color: #b0b7bb; border-style: solid; padding: 3px 6px 3px 6px;" scope="row"&gt;2&lt;/TH&gt;
&lt;TD class="r data" style="background-color: #ffffff; font-family: Arial,&amp;amp;quot; albany amt&amp;amp;quot;,helvetica,helv; font-size: x-small; font-style: normal; font-weight: normal; text-align: right; vertical-align: top; border-width: 0px 1px 1px 0px; border-color: #c1c1c1; border-style: solid; padding: 3px 6px 3px 6px;"&gt;02/01/2017&lt;/TD&gt;
&lt;TD class="r data" style="background-color: #ffffff; font-family: Arial,&amp;amp;quot; albany amt&amp;amp;quot;,helvetica,helv; font-size: x-small; font-style: normal; font-weight: normal; text-align: right; vertical-align: top; border-width: 0px 1px 1px 0px; border-color: #c1c1c1; border-style: solid; padding: 3px 6px 3px 6px;"&gt;02/01/2017&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="border-bottom-color: #c1c1c1; border-bottom-style: solid; border-bottom-width: 0px; border-top-color: #c1c1c1; border-top-style: solid; border-top-width: 1px;"&gt;
&lt;TH class="r rowheader" style="background-color: #edf2f9; color: #112277; font-family: Arial,&amp;amp;quot; albany amt&amp;amp;quot;,helvetica,helv; font-size: x-small; font-style: normal; font-weight: bold; text-align: right; vertical-align: top; border-width: 0px 1px 1px 0px; border-color: #b0b7bb; border-style: solid; padding: 3px 6px 3px 6px;" scope="row"&gt;3&lt;/TH&gt;
&lt;TD class="r data" style="background-color: #ffffff; font-family: Arial,&amp;amp;quot; albany amt&amp;amp;quot;,helvetica,helv; font-size: x-small; font-style: normal; font-weight: normal; text-align: right; vertical-align: top; border-width: 0px 1px 1px 0px; border-color: #c1c1c1; border-style: solid; padding: 3px 6px 3px 6px;"&gt;04/20/2017&lt;/TD&gt;
&lt;TD class="r data" style="background-color: #ffffff; font-family: Arial,&amp;amp;quot; albany amt&amp;amp;quot;,helvetica,helv; font-size: x-small; font-style: normal; font-weight: normal; text-align: right; vertical-align: top; border-width: 0px 1px 1px 0px; border-color: #c1c1c1; border-style: solid; padding: 3px 6px 3px 6px;"&gt;04/01/2017&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Sat, 30 May 2020 02:59:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/date-manipulation-from-SAS-datetime-field/m-p/651911#M195640</guid>
      <dc:creator>biopharma</dc:creator>
      <dc:date>2020-05-30T02:59:09Z</dc:date>
    </item>
  </channel>
</rss>

