<?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: How to change BEST12 to MMDDYY10. in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-to-change-BEST12-to-MMDDYY10/m-p/467659#M70714</link>
    <description>&lt;P&gt;Yes, you are right.&lt;/P&gt;&lt;P&gt;I just figured this out. This is what I am doing and it works. Thank you very much.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; temp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;set&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; flowsheet;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#008000" face="Courier New" size="3"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;service_day2= input(put(service_day, &lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;z8.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;),&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;yymmdd8.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;format&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; service_day2 &lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;mmddyy10.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;drop&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; service_day;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;rename&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; service_day2= service_day; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 05 Jun 2018 13:48:33 GMT</pubDate>
    <dc:creator>AMFR</dc:creator>
    <dc:date>2018-06-05T13:48:33Z</dc:date>
    <item>
      <title>How to change BEST12 to MMDDYY10.</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-change-BEST12-to-MMDDYY10/m-p/467657#M70712</link>
      <description>&lt;P&gt;I have a numeric date variable with the format BEST12 and informat BEST32 assigned to it. I want to change it to MMDDYY10. How can I do this?&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jun 2018 13:34:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-change-BEST12-to-MMDDYY10/m-p/467657#M70712</guid>
      <dc:creator>AMFR</dc:creator>
      <dc:date>2018-06-05T13:34:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to change BEST12 to MMDDYY10.</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-change-BEST12-to-MMDDYY10/m-p/467658#M70713</link>
      <description>&lt;P&gt;Post example test data in the form of a datastep.&amp;nbsp; Otherwise I am just guessing what you have!&amp;nbsp; Is it looking like this?&lt;/P&gt;
&lt;PRE&gt;data want;
  num_var=20180212;
  date_var=input(put(num_date,8.),yymmdd8.);
  format date_var date9.;
run;&lt;/PRE&gt;</description>
      <pubDate>Tue, 05 Jun 2018 13:45:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-change-BEST12-to-MMDDYY10/m-p/467658#M70713</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-06-05T13:45:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to change BEST12 to MMDDYY10.</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-change-BEST12-to-MMDDYY10/m-p/467659#M70714</link>
      <description>&lt;P&gt;Yes, you are right.&lt;/P&gt;&lt;P&gt;I just figured this out. This is what I am doing and it works. Thank you very much.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; temp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;set&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; flowsheet;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#008000" face="Courier New" size="3"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;service_day2= input(put(service_day, &lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;z8.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;),&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;yymmdd8.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;format&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; service_day2 &lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;mmddyy10.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;drop&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; service_day;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;rename&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; service_day2= service_day; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jun 2018 13:48:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-change-BEST12-to-MMDDYY10/m-p/467659#M70714</guid>
      <dc:creator>AMFR</dc:creator>
      <dc:date>2018-06-05T13:48:33Z</dc:date>
    </item>
  </channel>
</rss>

