<?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 / Time Formatting Issue in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Date-Time-Formatting-Issue/m-p/362303#M85577</link>
    <description>&lt;P&gt;Hello Friends&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the following programe. &amp;nbsp;Can you please help me whether is there any issue with this code?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DATA test5;&lt;BR /&gt;INFORMAT LASTNAME $20. DOB MMDDYY8. GENDER $1.;&lt;BR /&gt;INPUT ID LASTNAME $12. DOB mmddyy8. HEIGHT 2. WEIGHT 3. GENDER $1. AGE 2.;&lt;BR /&gt;FORMAT DOB MMDDYY8.;&lt;BR /&gt;DATALINES;&lt;BR /&gt;1 SMITH 1/23/66 68 144 M 26&lt;BR /&gt;2 JONES 3/14/60 78 202 M 32&lt;BR /&gt;3 DOE 11/26/47 62 99 F 45&lt;BR /&gt;4 WASHINGTON 8/1/70 66 101 F 22&lt;BR /&gt;Run;&lt;/P&gt;&lt;P&gt;PROC PRINT;&lt;BR /&gt;TITLE 'Example 3.1';&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 28 May 2017 16:30:56 GMT</pubDate>
    <dc:creator>sas_td2016</dc:creator>
    <dc:date>2017-05-28T16:30:56Z</dc:date>
    <item>
      <title>Date / Time Formatting Issue</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Date-Time-Formatting-Issue/m-p/362303#M85577</link>
      <description>&lt;P&gt;Hello Friends&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the following programe. &amp;nbsp;Can you please help me whether is there any issue with this code?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DATA test5;&lt;BR /&gt;INFORMAT LASTNAME $20. DOB MMDDYY8. GENDER $1.;&lt;BR /&gt;INPUT ID LASTNAME $12. DOB mmddyy8. HEIGHT 2. WEIGHT 3. GENDER $1. AGE 2.;&lt;BR /&gt;FORMAT DOB MMDDYY8.;&lt;BR /&gt;DATALINES;&lt;BR /&gt;1 SMITH 1/23/66 68 144 M 26&lt;BR /&gt;2 JONES 3/14/60 78 202 M 32&lt;BR /&gt;3 DOE 11/26/47 62 99 F 45&lt;BR /&gt;4 WASHINGTON 8/1/70 66 101 F 22&lt;BR /&gt;Run;&lt;/P&gt;&lt;P&gt;PROC PRINT;&lt;BR /&gt;TITLE 'Example 3.1';&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 28 May 2017 16:30:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Date-Time-Formatting-Issue/m-p/362303#M85577</guid>
      <dc:creator>sas_td2016</dc:creator>
      <dc:date>2017-05-28T16:30:56Z</dc:date>
    </item>
    <item>
      <title>Re: Date / Time Formatting Issue</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Date-Time-Formatting-Issue/m-p/362310#M85581</link>
      <description>&lt;P&gt;something like this should work. plesse look into this link which will help you understand . &lt;A href="http://support.sas.com/documentation/cdl/en/lrcon/62955/HTML/default/viewer.htm#a003209907.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/lrcon/62955/HTML/default/viewer.htm#a003209907.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&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; test5;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;informat&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; lastname &lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;$12.&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;INPUT&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; ID LASTNAME $ DOB: &lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;mmddyy8.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; HEIGHT WEIGHT GENDER $ AGE ;&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; DOB &lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;MMDDYY8.&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;DATALINES&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;1 SMITH 1/23/66 68 144 M 26&lt;/P&gt;
&lt;P&gt;2 JONES 3/14/60 78 202 M 32&lt;/P&gt;
&lt;P&gt;3 DOE 11/26/47 62 99 F 45&lt;/P&gt;
&lt;P&gt;4 WASHINGTON 8/1/70 66 101 F 22&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;
&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;PROC&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;PRINT&lt;/FONT&gt;&lt;/STRONG&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;TITLE&lt;/FONT&gt; &lt;FONT color="#800080" face="Courier New" size="3"&gt;'Example 3.1'&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&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>Sun, 28 May 2017 16:57:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Date-Time-Formatting-Issue/m-p/362310#M85581</guid>
      <dc:creator>kiranv_</dc:creator>
      <dc:date>2017-05-28T16:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: Date / Time Formatting Issue</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Date-Time-Formatting-Issue/m-p/362316#M85587</link>
      <description>&lt;P&gt;Thanks a lot. &amp;nbsp;Highly appreciated. &amp;nbsp;This works. &amp;nbsp;&lt;/P&gt;&lt;P&gt;I will check out the link you provided for more info.&lt;/P&gt;</description>
      <pubDate>Sun, 28 May 2017 17:30:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Date-Time-Formatting-Issue/m-p/362316#M85587</guid>
      <dc:creator>sas_td2016</dc:creator>
      <dc:date>2017-05-28T17:30:01Z</dc:date>
    </item>
  </channel>
</rss>

