<?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: Cannot convert dates in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Cannot-convert-dates/m-p/721972#M223810</link>
    <description>&lt;P&gt;In that case you may need to adjust your INPUT statement because the date is probably being read from the wrong columns. Please post your complete SAS log as&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;has asked.&lt;/P&gt;</description>
    <pubDate>Thu, 25 Feb 2021 19:16:03 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2021-02-25T19:16:03Z</dc:date>
    <item>
      <title>Cannot convert dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Cannot-convert-dates/m-p/721759#M223744</link>
      <description>&lt;P&gt;So here is my code. I'm following what my professors says to a T, but for some reason, I cannot convert date. It just wont work. The raw format is 12DEC2000 or Date9, in im correct. For some reason, the code I have below won't let me convert it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data work.sanfran;&lt;BR /&gt;Infile '/folders/myfolders/sasuser.v94/Data for Classes 3 to 6/sfosch.dat';&lt;BR /&gt;Input @1 FlightID $7.&lt;BR /&gt;@8 RouteID $7.&lt;BR /&gt;@15 Destination $6.&lt;BR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/75709"&gt;@31&lt;/a&gt; Model $6.&lt;BR /&gt;@40 Date $date9.&lt;BR /&gt;@64 TotPassCap 4.;&lt;BR /&gt;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc print data=work.sanfran;&lt;BR /&gt;Format date $ddmmyy10.; /* THIS SHOULD BE WORKING*/&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2021 05:32:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Cannot-convert-dates/m-p/721759#M223744</guid>
      <dc:creator>FrustratedBio</dc:creator>
      <dc:date>2021-02-25T05:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot convert dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Cannot-convert-dates/m-p/721760#M223745</link>
      <description>&lt;P&gt;SAS dates are numeric variables and so require numeric INFORMATs and FORMATs You need to remove the dollar signs preceding your date formats:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data work.sanfran;
Infile '/folders/myfolders/sasuser.v94/Data for Classes 3 to 6/sfosch.dat';
Input @1 FlightID $7.
@8 RouteID $7.
@15 Destination $6.
@31 Model $6.
@40 Date date9.
@64 TotPassCap 4.;

run;

proc print data=work.sanfran;
Format date ddmmyy10.; /* THIS SHOULD BE WORKING*/
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 25 Feb 2021 05:55:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Cannot-convert-dates/m-p/721760#M223745</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-02-25T05:55:42Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot convert dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Cannot-convert-dates/m-p/721787#M223755</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Format date $ddmmyy10.; /* THIS SHOULD BE WORKING*/&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This should positively NOT work, as there is no $DDMMYY format.&lt;/P&gt;
&lt;P&gt;The existing format DDMMYY is for numeric values.&lt;/P&gt;
&lt;P&gt;Similarly, there is no $DATE informat, which a quick look at your log will reveal:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
input date $date9.;
datalines;
01jan1960
;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Log:&lt;/P&gt;
&lt;PRE&gt; 73         data test;
 74         input date $date9.;
                       _______
                       485
 NOTE 485-185: Informat $DATE was not found or could not be loaded.
 
 75         datalines;
 
&lt;/PRE&gt;
&lt;P&gt;This, OTOH, will work:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
input date date9.;
datalines;
01jan1960
;

proc print data=test;
format date ddmmyy10.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Log:&lt;/P&gt;
&lt;PRE&gt; 73         data test;
 74         input date date9.;
 75         datalines;
 
 NOTE: The data set WORK.TEST has 1 observations and 1 variables.
 NOTE:  Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit):
       real time           0.00 seconds
       cpu time            0.00 seconds
       
 
 77         ;
 78         
 79         proc print data=test;
 80         format date ddmmyy10.;
 81         run;
 
 NOTE: There were 1 observations read from the data set WORK.TEST.
 NOTE:  Verwendet wurde: PROZEDUR PRINT - (Gesamtverarbeitungszeit):
       real time           0.03 seconds
       cpu time            0.02 seconds
&lt;/PRE&gt;
&lt;P&gt;DATE is now read as a numeric SAS date value, and can be displayed with one of the many date-related numeric formats.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I recommend this:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=lrcon&amp;amp;docsetTarget=p1wj0wt2ebe2a0n1lv4lem9hdc0v.htm&amp;amp;locale=de" target="_blank" rel="noopener"&gt;About SAS Date, Time, and Datetime Values&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;for further reading.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2021 08:53:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Cannot-convert-dates/m-p/721787#M223755</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-02-25T08:53:09Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot convert dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Cannot-convert-dates/m-p/721886#M223792</link>
      <description>&lt;P&gt;Thanks a bunch for your reply. The problem is that it doesn't seem to want to do that for whatever reason. If I remove my dollar signs I get a warning message and an empty column in my results.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2021 14:35:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Cannot-convert-dates/m-p/721886#M223792</guid>
      <dc:creator>FrustratedBio</dc:creator>
      <dc:date>2021-02-25T14:35:32Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot convert dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Cannot-convert-dates/m-p/721896#M223798</link>
      <description>&lt;P&gt;Please post the log from your data step. Include all the code, and if you get lots of "invalid data" messages, just a few of them will be enough.&lt;/P&gt;
&lt;P&gt;Please use the indicated button to post the log text:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bildschirmfoto 2020-04-07 um 08.32.59.jpg" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/54552i914D97BE1B0F21E5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bildschirmfoto 2020-04-07 um 08.32.59.jpg" alt="Bildschirmfoto 2020-04-07 um 08.32.59.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2021 15:14:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Cannot-convert-dates/m-p/721896#M223798</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-02-25T15:14:57Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot convert dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Cannot-convert-dates/m-p/721972#M223810</link>
      <description>&lt;P&gt;In that case you may need to adjust your INPUT statement because the date is probably being read from the wrong columns. Please post your complete SAS log as&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;has asked.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2021 19:16:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Cannot-convert-dates/m-p/721972#M223810</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-02-25T19:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot convert dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Cannot-convert-dates/m-p/722016#M223830</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;72&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;73 data work.sanfran;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;74 Infile '/folders/myfolders/sasuser.v94/Data for Classes 3 to 6/sfosch.dat';&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;75 Input @1 FlightID $7.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;76 @8 RouteID $7.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;77 @15 Destination $6.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;78 &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/75709"&gt;@31&lt;/a&gt; Model $6.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;79 @40 Date date9.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;80 @64 TotPassCap 4.;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;81&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;82 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The infile '/folders/myfolders/sasuser.v94/Data for Classes 3 to 6/sfosch.dat' is:&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Filename=/folders/myfolders/sasuser.v94/Data for Classes 3 to 6/sfosch.dat,&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Owner Name=root,Group Name=vboxsf,&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Access Permission=-rwxrwx---,&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Last Modified=24May2010:17:54:24,&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;File Size (bytes)=4212&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Date in line 1 40-48.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;1 IA112000000112 HNDJetCruise LF8100 01DEC2000 6 19 31 171 255 61300 79077 79&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;FlightID=IA11200 RouteID=0000112 Destination=HND Model=LF8100 Date=. TotPassCap=255 _ERROR_=1 _N_=1&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Date in line 2 40-48.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;2 IA018040000018 SEAJetCruise SF1000 01DEC2000 6 10 123 150 10300 13287 79&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;FlightID=IA01804 RouteID=0000018 Destination=SEA Model=SF1000 Date=. TotPassCap=150 _ERROR_=1 _N_=2&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Date in line 3 40-48.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;3 IA029010000029 HNLJetCruise LF5200 02DEC2000 7 13 24 138 207 47400 61146 79&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;FlightID=IA02901 RouteID=0000029 Destination=HNL Model=LF5200 Date=. TotPassCap=207 _ERROR_=1 _N_=3&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Date in line 4 40-48.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;4 IA031000000031 ANCJetCruise LF8100 02DEC2000 7 13 22 250 255 24800 31992 79&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;FlightID=IA03100 RouteID=0000031 Destination=ANC Model=LF8100 Date=. TotPassCap=255 _ERROR_=1 _N_=4&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Date in line 5 40-48.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;5 IA029010000029 HNLJetCruise LF5200 03DEC2000 1 14 25 132 207 48200 62178 79&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;FlightID=IA02901 RouteID=0000029 Destination=HNL Model=LF5200 Date=. TotPassCap=207 _ERROR_=1 _N_=5&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Date in line 6 40-48.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;6 IA031000000031 ANCJetCruise MF4000 03DEC2000 1 16 243 267 25600 33024 79&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;FlightID=IA03100 RouteID=0000031 Destination=ANC Model=MF4000 Date=. TotPassCap=267 _ERROR_=1 _N_=6&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Date in line 7 40-48.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;7 IA008000000008 RDUJetCruise MF4000 04DEC2000 2 16 243 267 25600 33024 79&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;FlightID=IA00800 RouteID=0000008 Destination=RDU Model=MF4000 Date=. TotPassCap=267 _ERROR_=1 _N_=7&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Date in line 8 40-48.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;8 IA018050000018 SEAJetCruise SF1000 04DEC2000 2 11 123 150 10100 13029 79&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;FlightID=IA01805 RouteID=0000018 Destination=SEA Model=SF1000 Date=. TotPassCap=150 _ERROR_=1 _N_=8&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Date in line 9 40-48.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;9 IA018040000018 SEAJetCruise LF5100 06DEC2000 4 11 12 111 165 12500 16125 79&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;FlightID=IA01804 RouteID=0000018 Destination=SEA Model=LF5100 Date=. TotPassCap=165 _ERROR_=1 _N_=9&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Date in line 10 40-48.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;10 IA031010000031 ANCJetCruise LF8100 06DEC2000 4 14 26 233 255 28000 36120 79&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;FlightID=IA03101 RouteID=0000031 Destination=ANC Model=LF8100 Date=. TotPassCap=255 _ERROR_=1 _N_=10&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Date in line 11 40-48.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;11 IA018020000018 SEAJetCruise SF1000 07DEC2000 5 10 N/A 132 150 8500 10965 79&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;FlightID=IA01802 RouteID=0000018 Destination=SEA Model=SF1000 Date=. TotPassCap=150 _ERROR_=1 _N_=11&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Date in line 12 40-48.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;12 IA112000000112 HNDJetCruise LF8100 08DEC2000 6 17 33 194 255 56700 73143 79&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;FlightID=IA11200 RouteID=0000112 Destination=HND Model=LF8100 Date=. TotPassCap=255 _ERROR_=1 _N_=12&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Date in line 13 40-48.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;13 IA031010000031 ANCJetCruise LF8100 08DEC2000 6 13 17 242 255 26400 34056 79&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;FlightID=IA03101 RouteID=0000031 Destination=ANC Model=LF8100 Date=. TotPassCap=255 _ERROR_=1 _N_=13&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Date in line 14 40-48.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;14 IA018040000018 SEAJetCruise SF1000 08DEC2000 6 12 119 150 10700 13803 79&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;FlightID=IA01804 RouteID=0000018 Destination=SEA Model=SF1000 Date=. TotPassCap=150 _ERROR_=1 _N_=14&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Date in line 15 40-48.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;15 IA112010000112 HNDJetCruise LF8100 09DEC2000 7 15 32 175 255 61100 78819 79&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;FlightID=IA11201 RouteID=0000112 Destination=HND Model=LF8100 Date=. TotPassCap=255 _ERROR_=1 _N_=15&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Date in line 16 40-48.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;16 IA031000000031 ANCJetCruise MF4000 09DEC2000 7 14 237 267 27200 35088 79&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;FlightID=IA03100 RouteID=0000031 Destination=ANC Model=MF4000 Date=. TotPassCap=267 _ERROR_=1 _N_=16&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Date in line 17 40-48.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;17 IA018050000018 SEAJetCruise SF1000 10DEC2000 1 12 126 150 9300 11997 79&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;FlightID=IA01805 RouteID=0000018 Destination=SEA Model=SF1000 Date=. TotPassCap=150 _ERROR_=1 _N_=17&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Date in line 18 40-48.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;18 IA018030000018 SEAJetCruise SF1000 11DEC2000 2 12 136 150 7300 9417 79&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;FlightID=IA01803 RouteID=0000018 Destination=SEA Model=SF1000 Date=. TotPassCap=150 _ERROR_=1 _N_=18&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Date in line 19 40-48.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;19 IA112010000112 HNDJetCruise MF2100 12DEC2000 3 18 31 178 237 60100 77529 79&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;FlightID=IA11201 RouteID=0000112 Destination=HND Model=MF2100 Date=. TotPassCap=237 _ERROR_=1 _N_=19&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Date in line 20 40-48.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: Limit set by ERRORS= option reached. Further errors of this type will not be printed.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;20 IA112000000112 HNDJetCruise LF8100 13DEC2000 4 17 29 179 255 60500 78045 79&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;FlightID=IA11200 RouteID=0000112 Destination=HND Model=LF8100 Date=. TotPassCap=255 _ERROR_=1 _N_=20&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: 52 records were read from the infile '/folders/myfolders/sasuser.v94/Data for Classes 3 to 6/sfosch.dat'.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;The minimum record length was 79.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;The maximum record length was 79.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The data set WORK.SANFRAN has 52 observations and 6 variables.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: DATA statement used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.05 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.01 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;83&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;84 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;96&lt;/DIV&gt;&lt;/DIV&gt;&lt;PRE class="sasLog"&gt;Here is the log&lt;/PRE&gt;</description>
      <pubDate>Thu, 25 Feb 2021 23:59:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Cannot-convert-dates/m-p/722016#M223830</guid>
      <dc:creator>FrustratedBio</dc:creator>
      <dc:date>2021-02-25T23:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot convert dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Cannot-convert-dates/m-p/722083#M223865</link>
      <description>&lt;P&gt;Please do ALWAYS&lt;/P&gt;
&lt;P&gt;(as in&amp;nbsp;&lt;STRONG&gt;&lt;FONT size="6"&gt;ALWAYS&lt;/FONT&gt;&lt;/STRONG&gt;)&lt;/P&gt;
&lt;P&gt;use the indicated button for posting logs, otherwise the horizontal formatting is destroyed and the log becomes mostly useless.&lt;/P&gt;
&lt;P&gt;Similarly, you can open the file with a text editor (like Windows Editor or Notepad++, NOT a word processor like MS Word) and copy/paste a few lines into a window opened with the same button. Or you change the filename extension to .txt and attach the file to your next post.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suspect that the positions in the code do not match the positions in the file. But I can only tell for sure once I see the data as it is.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Feb 2021 10:15:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Cannot-convert-dates/m-p/722083#M223865</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-02-26T10:15:50Z</dc:date>
    </item>
  </channel>
</rss>

