<?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 Date to Month Format in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Date-to-Month-Format/m-p/11631#M1412</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; HI Art,&lt;/P&gt;&lt;P&gt;I've a table named 'All' it has 30 columns . Using your data step how would I tie it together&amp;nbsp; to convert&amp;nbsp; my date of 4000 entries&amp;nbsp; to reflect Month but keep the columns . I tried&amp;nbsp; rename my table to the data step&amp;nbsp; 'Have' to ALL&amp;nbsp; an it removed the rest of the columns &lt;/P&gt;&lt;P&gt;Thanks again for your assitance in this matter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Feb 2012 07:41:05 GMT</pubDate>
    <dc:creator>BETO</dc:creator>
    <dc:date>2012-02-27T07:41:05Z</dc:date>
    <item>
      <title>Date to Month Format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Date-to-Month-Format/m-p/11628#M1409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The issue is I have a column with " On time" which displays 02/20/12&amp;nbsp; I used MONAME to&amp;nbsp; format to Month "Feb "which is great in my SAS table. The issue is when I export to excel it converts it back 02/20/12 . What can I do to keep the format of&amp;nbsp; Feb ? Thanks for your assitance &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2012 18:22:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Date-to-Month-Format/m-p/11628#M1409</guid>
      <dc:creator>BETO</dc:creator>
      <dc:date>2012-02-23T18:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: Date to Month Format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Date-to-Month-Format/m-p/11629#M1410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You probably need to convert it into character. Excel will not recognize SAS format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Edit: something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt;a=input ('2/20/12', mmddyy8.);&lt;/P&gt;&lt;P&gt;b=put(a,monname3.);&lt;/P&gt;&lt;P&gt;put a b;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Haikuo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2012 18:23:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Date-to-Month-Format/m-p/11629#M1410</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2012-02-23T18:23:56Z</dc:date>
    </item>
    <item>
      <title>Date to Month Format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Date-to-Month-Format/m-p/11630#M1411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree we Haikuo.&amp;nbsp; Create a new variable to export.&amp;nbsp; e.g.:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;&amp;nbsp; informat on_time mmddyy8.;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input on_time;&lt;/P&gt;&lt;P&gt;&amp;nbsp; on_time_month=put(on_time,monname3.);&lt;/P&gt;&lt;P&gt;&amp;nbsp; cards;&lt;/P&gt;&lt;P&gt;02/20/12&lt;/P&gt;&lt;P&gt;03/14/12&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2012 18:31:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Date-to-Month-Format/m-p/11630#M1411</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-02-23T18:31:00Z</dc:date>
    </item>
    <item>
      <title>Date to Month Format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Date-to-Month-Format/m-p/11631#M1412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; HI Art,&lt;/P&gt;&lt;P&gt;I've a table named 'All' it has 30 columns . Using your data step how would I tie it together&amp;nbsp; to convert&amp;nbsp; my date of 4000 entries&amp;nbsp; to reflect Month but keep the columns . I tried&amp;nbsp; rename my table to the data step&amp;nbsp; 'Have' to ALL&amp;nbsp; an it removed the rest of the columns &lt;/P&gt;&lt;P&gt;Thanks again for your assitance in this matter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2012 07:41:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Date-to-Month-Format/m-p/11631#M1412</guid>
      <dc:creator>BETO</dc:creator>
      <dc:date>2012-02-27T07:41:05Z</dc:date>
    </item>
    <item>
      <title>Date to Month Format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Date-to-Month-Format/m-p/11632#M1413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data all;&lt;/P&gt;&lt;P&gt; set all;&lt;/P&gt;&lt;P&gt;on_time_month=put(on_time,monname3.);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2012 07:45:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Date-to-Month-Format/m-p/11632#M1413</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-02-27T07:45:38Z</dc:date>
    </item>
    <item>
      <title>Date to Month Format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Date-to-Month-Format/m-p/11633#M1414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The code that both Ksharp and I suggested would take care of it for all 4,000 of your records.&amp;nbsp; I'm not sure what you actually did, as you didn't post the code that you ran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2012 13:45:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Date-to-Month-Format/m-p/11633#M1414</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-02-27T13:45:31Z</dc:date>
    </item>
  </channel>
</rss>

