<?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: SAS Date format - want to have only month in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Date-format-want-to-have-only-month/m-p/114304#M9699</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ballarw -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If we are using proc sql example Select Month(xxxdate) gives me numeric "8", do you know how to change it to display "Aug".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Sep 2012 21:45:14 GMT</pubDate>
    <dc:creator>Rish</dc:creator>
    <dc:date>2012-09-06T21:45:14Z</dc:date>
    <item>
      <title>SAS Date format - want to have only month</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Date-format-want-to-have-only-month/m-p/114302#M9697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gurus -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to pull only the month from the datasets. Currently the date is stored as example 12Aug2012. I just need Aug.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Sep 2012 20:43:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Date-format-want-to-have-only-month/m-p/114302#M9697</guid>
      <dc:creator>Rish</dc:creator>
      <dc:date>2012-09-06T20:43:23Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Date format - want to have only month</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Date-format-want-to-have-only-month/m-p/114303#M9698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is the value a SAS date, i.e. numeric with a default format of Date9. or is it string?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If a SAS date then you can change the format Monname3. and it will display as Aug.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If need to select a specific month (not including year) of data you can use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if month(datevariablename) = 8; or the number of the month you want if the variable is a SAS date.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Sep 2012 21:39:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Date-format-want-to-have-only-month/m-p/114303#M9698</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2012-09-06T21:39:46Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Date format - want to have only month</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Date-format-want-to-have-only-month/m-p/114304#M9699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ballarw -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If we are using proc sql example Select Month(xxxdate) gives me numeric "8", do you know how to change it to display "Aug".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Sep 2012 21:45:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Date-format-want-to-have-only-month/m-p/114304#M9699</guid>
      <dc:creator>Rish</dc:creator>
      <dc:date>2012-09-06T21:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Date format - want to have only month</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Date-format-want-to-have-only-month/m-p/114305#M9700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;select month(xxxdate) as month format=NLSTRMON3.1, ...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this works for locale=English_UnitedStates, for other locales you must adjust the field width. For example, for locale=French_Canada, you must use NLSTRMON5.1 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Sep 2012 22:30:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Date-format-want-to-have-only-month/m-p/114305#M9700</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2012-09-06T22:30:53Z</dc:date>
    </item>
  </channel>
</rss>

