<?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 Format in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/SAS-Format/m-p/158453#M41410</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" data-avatarid="-1" data-externalid="" data-presence="null" data-userid="813022" data-username="stat%40sas" href="https://communities.sas.com/people/stat@sas" id="jive-81302219300810752823186" style="padding: 0 3px 0 0; font-weight: inherit; font-style: inherit; font-size: 1.1em; font-family: inherit; color: #0e66ba;"&gt;stat@sas&lt;/A&gt; this is coming as Friday ,&amp;nbsp; 1 Jun , 2014. wanted very specific like &lt;/STRONG&gt; "&lt;SPAN style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG style="text-decoration: underline;"&gt;19 Aug , Mon".&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;STRONG style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" data-avatarid="1002" data-externalid="" data-presence="null" data-userid="255172" data-username="Reeza" href="https://communities.sas.com/people/Reeza" id="jive-25517219300810761111186" style="padding: 0 3px 0 0; font-weight: inherit; font-style: inherit; font-size: 1.1em; font-family: inherit; color: #0e66ba;"&gt;Reeza&lt;/A&gt; &lt;/STRONG&gt;, this worked out as i wanted.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 28 Jun 2014 02:03:09 GMT</pubDate>
    <dc:creator>keds</dc:creator>
    <dc:date>2014-06-28T02:03:09Z</dc:date>
    <item>
      <title>SAS Format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/SAS-Format/m-p/158450#M41407</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;&lt;/P&gt;&lt;P&gt; i was just wondering if we have a sas format for "19 Aug , Mon". i have a date which needs to be converted to this format , do we have a inbuilt sas format which can give me this ? or any other way ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Keds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jun 2014 17:06:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/SAS-Format/m-p/158450#M41407</guid>
      <dc:creator>keds</dc:creator>
      <dc:date>2014-06-27T17:06:41Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/SAS-Format/m-p/158451#M41408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;dt='01JUN2014'd;&lt;/P&gt;&lt;P&gt;format dt WEEKDATE.;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc print;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jun 2014 17:22:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/SAS-Format/m-p/158451#M41408</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2014-06-27T17:22:15Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/SAS-Format/m-p/158452#M41409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If that's exactly your format then no, you'll need to "roll your own". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc format;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; picture date_custom_fmt (Default=45)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; low - high = '%d %b, %a'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (datatype = date);&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;data have;&lt;/P&gt;&lt;P&gt;dt='01JUN2014'd;&lt;/P&gt;&lt;P&gt;format dt date_custom_fmt.;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;See pages 14+:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www2.sas.com/proceedings/sugi31/243-31.pdf" title="http://www2.sas.com/proceedings/sugi31/243-31.pdf"&gt;http://www2.sas.com/proceedings/sugi31/243-31.pdf&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jun 2014 17:31:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/SAS-Format/m-p/158452#M41409</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-06-27T17:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/SAS-Format/m-p/158453#M41410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" data-avatarid="-1" data-externalid="" data-presence="null" data-userid="813022" data-username="stat%40sas" href="https://communities.sas.com/people/stat@sas" id="jive-81302219300810752823186" style="padding: 0 3px 0 0; font-weight: inherit; font-style: inherit; font-size: 1.1em; font-family: inherit; color: #0e66ba;"&gt;stat@sas&lt;/A&gt; this is coming as Friday ,&amp;nbsp; 1 Jun , 2014. wanted very specific like &lt;/STRONG&gt; "&lt;SPAN style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG style="text-decoration: underline;"&gt;19 Aug , Mon".&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;STRONG style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" data-avatarid="1002" data-externalid="" data-presence="null" data-userid="255172" data-username="Reeza" href="https://communities.sas.com/people/Reeza" id="jive-25517219300810761111186" style="padding: 0 3px 0 0; font-weight: inherit; font-style: inherit; font-size: 1.1em; font-family: inherit; color: #0e66ba;"&gt;Reeza&lt;/A&gt; &lt;/STRONG&gt;, this worked out as i wanted.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Jun 2014 02:03:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/SAS-Format/m-p/158453#M41410</guid>
      <dc:creator>keds</dc:creator>
      <dc:date>2014-06-28T02:03:09Z</dc:date>
    </item>
  </channel>
</rss>

