<?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: Extracting Month, Year and quarter in SAS Data Science</title>
    <link>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213830#M3076</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data one;&lt;/P&gt;&lt;P&gt;input name $2. @5 date1 yymmdd10. time $;&lt;/P&gt;&lt;P&gt;format date1 yymmdd10.;&lt;/P&gt;&lt;P&gt;yr1=year(date1);&lt;/P&gt;&lt;P&gt;mon1=month(date1);&lt;/P&gt;&lt;P&gt;day1=day(date1);&lt;/P&gt;&lt;P&gt;qtr=qtr(date1);&lt;/P&gt;&lt;P&gt;datalines;&lt;/P&gt;&lt;P&gt;A 2014-02-12 20:12&lt;/P&gt;&lt;P&gt;B 2014-04-01 19:00&lt;/P&gt;&lt;P&gt;D 2014-05-03 23:31&lt;/P&gt;&lt;P&gt;E 2014-07-29 17:10&lt;/P&gt;&lt;P&gt;R 2014-09-15 10:31&lt;/P&gt;&lt;P&gt;F 2015-03-10 12:12&lt;/P&gt;&lt;P&gt;G 2015-06-02 21:18&lt;/P&gt;&lt;P&gt;GF 2015-06-09 10:13&lt;/P&gt;&lt;P&gt;DF 2015-06-27 15:11&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 31 Jul 2015 02:16:54 GMT</pubDate>
    <dc:creator>AmanSAS</dc:creator>
    <dc:date>2015-07-31T02:16:54Z</dc:date>
    <item>
      <title>Extracting Month, Year and quarter</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213820#M3066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have the following table with date and time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="203"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="20" width="91"&gt;Name&lt;/TD&gt;&lt;TD width="112"&gt;Invoice_Date&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;A&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;2014-02-12 20:12&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;B&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;2014-04-01 19:00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;D&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;2014-05-03 23:31&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;E&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;2014-07-29 17:10&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;R&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;2014-09-15 10:31&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;F&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;2015-03-10 12:12&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;G&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;2015-06-02 21:18&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;GF&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;2015-06-09 10:13&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;DF&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;2015-06-27 15:11&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;data Out;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;informat &lt;SPAN style="font-size: 13.3333330154419px;"&gt;Invoice_Date&lt;/SPAN&gt; datetime16.;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;date = datepart(dob);&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;month = month(date);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;year = year(date);&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;quarter = qtr(date);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Set have;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Can someone tell me how do I extract Year Month YearMonth and Quarter like the following table please.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 543px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="20" width="91"&gt;Name&lt;/TD&gt;&lt;TD width="112"&gt;Invoice_Date&lt;/TD&gt;&lt;TD width="68"&gt;Year&lt;/TD&gt;&lt;TD width="48"&gt;Month&lt;/TD&gt;&lt;TD width="112"&gt;Yearmonth&lt;/TD&gt;&lt;TD width="112"&gt;Quarter&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;A&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;2014-02-12 20:12&lt;/TD&gt;&lt;TD&gt;2014&lt;/TD&gt;&lt;TD&gt;Feb&lt;/TD&gt;&lt;TD&gt;Feb-2014&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;B&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;2014-04-01 19:00&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;D&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;2014-05-03 23:31&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;E&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;2014-07-29 17:10&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;R&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;2014-09-15 10:31&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;F&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;2015-03-10 12:12&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;G&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;2015-06-02 21:18&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;GF&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;2015-06-09 10:13&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;DF&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;2015-06-27 15:11&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jul 2015 21:50:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213820#M3066</guid>
      <dc:creator>mlogan</dc:creator>
      <dc:date>2015-07-29T21:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Month, Year and quarter</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213821#M3067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG style="color: navy; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;data&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; have;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;input&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; name $ &lt;/SPAN&gt;&lt;STRONG style="color: teal; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;1&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;-&lt;/SPAN&gt;&lt;STRONG style="color: teal; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;2&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; invoice_datechar $ &lt;/SPAN&gt;&lt;STRONG style="color: teal; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;5&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;-&lt;/SPAN&gt;&lt;STRONG style="color: teal; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;20&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;format&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; invoice_date &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: teal; background: white;"&gt;datetime.&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;invoice_date = input ( invoice_datechar, &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: teal; background: white;"&gt;anydtdtm.&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;datalines&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;A&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2014-02-12 20:12&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;B&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2014-04-01 19:00&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;D&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2014-05-03 23:31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;E&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2014-07-29 17:10&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;R&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2014-09-15 10:31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;F&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2015-03-10 12:12&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;G&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2015-06-02 21:18&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;GF&amp;nbsp;&amp;nbsp;&amp;nbsp; 2015-06-09 10:13&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;DF&amp;nbsp;&amp;nbsp;&amp;nbsp; 2015-06-27 15:11&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;;;;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;run&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG style="color: navy; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;data&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; want;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;set&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; have;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;format&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; invoice_yearmonth &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: teal; background: white;"&gt;YYMON7.&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; invoice_quarter &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: teal; background: white;"&gt;qtr1.&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; invoice_year=year(datepart(invoice_date));&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; invoice_month=put(datepart(invoice_date), &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: teal; background: white;"&gt;monname3.&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; invoice_yearmonthchar=compress(put(datepart(invoice_date), &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: teal; background: white;"&gt;monname3.&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;)||&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: purple; background: white;"&gt;'-'&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;|| invoice_year);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; invoice_yearmonth=datepart(invoice_date);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; invoice_quarter=datepart(invoice_date);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;run&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jul 2015 01:31:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213821#M3067</guid>
      <dc:creator>Fugue</dc:creator>
      <dc:date>2015-07-30T01:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Month, Year and quarter</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213822#M3068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello mlogan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Examine and modify the following code. I did not use the time portion as part of the date string since the example you presented did not use it either. Run code and examine output, Use as you see fit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;input @1 name $char2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @4 invoice_str $CHAR10.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @15 inv_time $CHAR5.;&lt;/P&gt;&lt;P&gt;/*format invoice_date datetime.;*/&lt;/P&gt;&lt;P&gt;invoice_date = input ( invoice_str, yymmdd10.);&lt;/P&gt;&lt;P&gt;datalines;&lt;/P&gt;&lt;P&gt; A,2014-02-12,20:12&lt;/P&gt;&lt;P&gt; B,2014-04-01,19:00&lt;/P&gt;&lt;P&gt; D,2014-05-03,23:31&lt;/P&gt;&lt;P&gt; E,2014-07-29,17:10&lt;/P&gt;&lt;P&gt; R,2014-09-15,10:31&lt;/P&gt;&lt;P&gt; F,2015-03-10,12:12&lt;/P&gt;&lt;P&gt; G,2015-06-02,21:18&lt;/P&gt;&lt;P&gt;GF,2015-06-09,10:13&lt;/P&gt;&lt;P&gt;DF,2015-06-27,15:11&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set have;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; invoice_year=year(invoice_date);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; invoice_month=PUT(invoice_date, monname3.);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; invoice_yearmonth=invoice_month || '-' || invoice_year;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; invoice_quarter=PUT(QTR(invoice_date),3.);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc print data=want;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jul 2015 08:15:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213822#M3068</guid>
      <dc:creator>gcleggs</dc:creator>
      <dc:date>2015-07-30T08:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Month, Year and quarter</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213823#M3069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your code is fine as it is.&amp;nbsp; All you need to do is move the set command up to the top, i.e. processing is working, however until the set command is encountered no data is present.&lt;/P&gt;&lt;P&gt;data Out;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Set have;&lt;/P&gt;&lt;P&gt;&amp;nbsp; date = datepart(invoice_date);&lt;/P&gt;&lt;P&gt;&amp;nbsp; month = month(date);&lt;/P&gt;&lt;P&gt;&amp;nbsp; year = year(date);&lt;/P&gt;&lt;P&gt;&amp;nbsp; quarter = qtr(date);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jul 2015 08:47:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213823#M3069</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-07-30T08:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Month, Year and quarter</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213824#M3070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just a note Fugue, your code is less optimized than the OP.&amp;nbsp; You call datepart() five times.&amp;nbsp; I would suggest your better off creating a variable to hold datepart (not just to save procedure call, but maybe for further processing) and then dropping that variable if not needed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jul 2015 08:48:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213824#M3070</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-07-30T08:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Month, Year and quarter</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213825#M3071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here you go:&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;infile cards dsd;&lt;/P&gt;&lt;P&gt;informat Name $2.&amp;nbsp;&amp;nbsp;&amp;nbsp; Invoice_Date ymddttm16.;&lt;/P&gt;&lt;P&gt;format Name $2.&amp;nbsp;&amp;nbsp;&amp;nbsp; Invoice_Date datetime.;&lt;/P&gt;&lt;P&gt;input Name&amp;nbsp;&amp;nbsp;&amp;nbsp; Invoice_Date;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;A,2014-02-12 20:12&lt;/P&gt;&lt;P&gt;B,2014-04-01 19:00&lt;/P&gt;&lt;P&gt;D,2014-05-03 23:31&lt;/P&gt;&lt;P&gt;E,2014-07-29 17:10&lt;/P&gt;&lt;P&gt;R,2014-09-15 10:31&lt;/P&gt;&lt;P&gt;F,2015-03-10 12:12&lt;/P&gt;&lt;P&gt;G,2015-06-02 21:18&lt;/P&gt;&lt;P&gt;GF,2015-06-09 10:13&lt;/P&gt;&lt;P&gt;DF,2015-06-27 15:11&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;format yearmonth monyy7.;&lt;/P&gt;&lt;P&gt;set have;&lt;/P&gt;&lt;P&gt;year = year(datepart(Invoice_Date));&lt;/P&gt;&lt;P&gt;month = month(datepart(Invoice_Date));&lt;/P&gt;&lt;P&gt;yearmonth = datepart(Invoice_Date);&lt;/P&gt;&lt;P&gt;quarter = qtr(datepart(Invoice_Date));&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jul 2015 12:29:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213825#M3071</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2015-07-30T12:29:27Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Month, Year and quarter</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213826#M3072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Mark, your code worked. But I want the month as MMM and monthyear as JAN2015. Would you please tell me what would be the code for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jul 2015 13:43:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213826#M3072</guid>
      <dc:creator>mlogan</dc:creator>
      <dc:date>2015-07-30T13:43:44Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Month, Year and quarter</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213827#M3073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI gcleggs,&lt;/P&gt;&lt;P&gt;Thanks for the code, your code was working but can you modify the code so that all observations shows up, right now first 7 observations are mossing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jul 2015 13:51:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213827#M3073</guid>
      <dc:creator>mlogan</dc:creator>
      <dc:date>2015-07-30T13:51:11Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Month, Year and quarter</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213828#M3074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you need the MMM to be in a date format?&amp;nbsp; I tried using monname. and month. as formats but it is not working for me.&amp;nbsp; If you use this code it will be a character and not a date.&amp;nbsp; Also, I changed yearmonth to monthyear but I do not see a problem with the way it was formatted before.&amp;nbsp; Run this and let me know:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;format monthyear monyy7.;&lt;/P&gt;&lt;P&gt;set have;&lt;/P&gt;&lt;P&gt;_datepart = datepart(invoice_date);&lt;/P&gt;&lt;P&gt;monthyear = _datepart;&lt;/P&gt;&lt;P&gt;year = year(_datepart);&lt;/P&gt;&lt;P&gt;quarter = qtr(_datepart);&lt;/P&gt;&lt;P&gt;month = substr(input(put(monthyear,monyy7.),$7.),1,3);&lt;/P&gt;&lt;P&gt;drop _:;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jul 2015 14:00:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213828#M3074</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2015-07-30T14:00:47Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Month, Year and quarter</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213829#M3075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Mark. Actually your previous code was working and I did not notice the yearmonth in my output because it came in the first column (which was at the very left) and the rest came at the very end:). &lt;/P&gt;&lt;P&gt;Regarding MMM, I don't want it that way because it will not retain the date format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again for your help Mark.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jul 2015 14:17:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213829#M3075</guid>
      <dc:creator>mlogan</dc:creator>
      <dc:date>2015-07-30T14:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Month, Year and quarter</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213830#M3076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data one;&lt;/P&gt;&lt;P&gt;input name $2. @5 date1 yymmdd10. time $;&lt;/P&gt;&lt;P&gt;format date1 yymmdd10.;&lt;/P&gt;&lt;P&gt;yr1=year(date1);&lt;/P&gt;&lt;P&gt;mon1=month(date1);&lt;/P&gt;&lt;P&gt;day1=day(date1);&lt;/P&gt;&lt;P&gt;qtr=qtr(date1);&lt;/P&gt;&lt;P&gt;datalines;&lt;/P&gt;&lt;P&gt;A 2014-02-12 20:12&lt;/P&gt;&lt;P&gt;B 2014-04-01 19:00&lt;/P&gt;&lt;P&gt;D 2014-05-03 23:31&lt;/P&gt;&lt;P&gt;E 2014-07-29 17:10&lt;/P&gt;&lt;P&gt;R 2014-09-15 10:31&lt;/P&gt;&lt;P&gt;F 2015-03-10 12:12&lt;/P&gt;&lt;P&gt;G 2015-06-02 21:18&lt;/P&gt;&lt;P&gt;GF 2015-06-09 10:13&lt;/P&gt;&lt;P&gt;DF 2015-06-27 15:11&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2015 02:16:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213830#M3076</guid>
      <dc:creator>AmanSAS</dc:creator>
      <dc:date>2015-07-31T02:16:54Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Month, Year and quarter</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213831#M3077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mark, the other day you showed me how to extract yearmonth from datetime format, can you please show me how to extract the yearmonth (eg. Jan2015) from date format (01JAN2015) please. Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;A,2014-02-12&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;B,2014-04-01&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;D,2014-05-03&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;E,2014-07-29&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;R,2014-09-15&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;F,2015-03-10&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;G,2015-06-02&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;GF,2015-06-09&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;DF,2015-06-27&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2015 16:43:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213831#M3077</guid>
      <dc:creator>mlogan</dc:creator>
      <dc:date>2015-08-11T16:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Month, Year and quarter</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213832#M3078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are not extracting anything.&amp;nbsp; If it's in a date format you are only changing the display.&amp;nbsp; You have yymmdd10. format and you want monyy7.&amp;nbsp;&amp;nbsp; See if this helps, run these and take a look at the outputs:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;infile cards dsd;&lt;/P&gt;&lt;P&gt;informat id $2. have want yymmdd10.;&lt;/P&gt;&lt;P&gt;format have yymmdd10. want monyy7.;&lt;/P&gt;&lt;P&gt;input id have want;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;A,2014-02-12,2014-02-12&lt;/P&gt;&lt;P&gt;B,2014-04-01,2014-04-01&lt;/P&gt;&lt;P&gt;D,2014-05-03,2014-05-03&lt;/P&gt;&lt;P&gt;E,2014-07-29,2014-07-29&lt;/P&gt;&lt;P&gt;R,2014-09-15,2014-09-15&lt;/P&gt;&lt;P&gt;F,2015-03-10,2015-03-10&lt;/P&gt;&lt;P&gt;G,2015-06-02,2015-06-02&lt;/P&gt;&lt;P&gt;GF,2015-06-09,2015-06-09&lt;/P&gt;&lt;P&gt;DF,2015-06-27,2015-06-27&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;format have monyy7.;&lt;/P&gt;&lt;P&gt;set have;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2015 16:54:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213832#M3078</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2015-08-11T16:54:08Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Month, Year and quarter</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213833#M3079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Mark, It help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2015 18:22:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Extracting-Month-Year-and-quarter/m-p/213833#M3079</guid>
      <dc:creator>mlogan</dc:creator>
      <dc:date>2015-08-11T18:22:48Z</dc:date>
    </item>
  </channel>
</rss>

