<?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: Better Subject Line Needed in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Please-correct-the-code/m-p/852862#M337105</link>
    <description>&lt;P&gt;Thanks for the log, but the problem is on the line of data BEFORE the one that is being listed.&amp;nbsp; Basically the issue seems to be that it did not find a value of the date on the line before so it is hunting for one on the line it is showing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the problem is just that one of the lines is missing a date value you might only need to add an INFILE statement so you can use the TRUNCOVER option to prevent INPUT from going to the next line.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data date;
  infile cards truncover;
  input Patent_ID Age Date_of_admission;
  informat Date_of_admission ddmmyy10.;
  format Date_of_admission ddmmyyb10.;
cards;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or you can just add a single period on the data lines to indicate when one of the three fields is missing.&lt;/P&gt;
&lt;P&gt;See the third line of data in this example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data date;
  input Patent_ID Age Date_of_admission;
  informat Date_of_admission ddmmyy10.;
  format Date_of_admission ddmmyy10.;
cards;
100 56 02/03/1985
200 65 02.03.1986
300 76 .
400 82 02.04.1988
;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 09 Jan 2023 17:07:27 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2023-01-09T17:07:27Z</dc:date>
    <item>
      <title>Please correct the code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-correct-the-code/m-p/852815#M337080</link>
      <description>&lt;P&gt;data date;&lt;BR /&gt;input Patent_ID Age Date_of_admission;&lt;BR /&gt;informat Date_of_admission ddmmyy10.;&lt;BR /&gt;format Date_of_admission ddmmyy10.;&lt;BR /&gt;cards;&lt;BR /&gt;100 56 02/03/1985&lt;BR /&gt;200 65 02.03.1986&lt;BR /&gt;300 76 02-05-1987&lt;BR /&gt;400 82 02.04.1988&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc print data=date;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2023 15:13:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-correct-the-code/m-p/852815#M337080</guid>
      <dc:creator>Prasad-S</dc:creator>
      <dc:date>2023-01-09T15:13:59Z</dc:date>
    </item>
    <item>
      <title>Better Subject Line Needed</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-correct-the-code/m-p/852818#M337082</link>
      <description>&lt;P&gt;I don't see anything wrong with this code. It runs correctly for me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please go back and change the subject line to be a meaningful subject for your post. "Please correct the code" could apply to 95% of the posts here.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2023 15:19:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-correct-the-code/m-p/852818#M337082</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-01-09T15:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: Better Subject Line Needed</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-correct-the-code/m-p/852823#M337085</link>
      <description>&lt;P&gt;hi, Thanks for quick reply. But the output and result are not showing correct result. I could see only two observations i.e first and last one.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2023 15:24:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-correct-the-code/m-p/852823#M337085</guid>
      <dc:creator>Prasad-S</dc:creator>
      <dc:date>2023-01-09T15:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: Better Subject Line Needed</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-correct-the-code/m-p/852824#M337086</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/438283"&gt;@Prasad-S&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;hi, Thanks for quick reply. But the output and result are not showing correct result. I could see only two observations i.e first and last one.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I run your code unchanged. I see four records when I do the PROC PRINT. Please show us the output you are seeing. Please fix the subject line in the original post.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2023 15:26:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-correct-the-code/m-p/852824#M337086</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-01-09T15:26:19Z</dc:date>
    </item>
    <item>
      <title>Re: Better Subject Line Needed</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-correct-the-code/m-p/852830#M337088</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Capture.PNG" style="width: 428px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/79185i4A92BAEEC94E2774/image-dimensions/428x253?v=v2" width="428" height="253" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class=""&gt;68&lt;/DIV&gt;&lt;DIV class=""&gt;69 data date;&lt;/DIV&gt;&lt;DIV class=""&gt;70 input Patent_ID Age Date_of_admission;&lt;/DIV&gt;&lt;DIV class=""&gt;71 informat Date_of_admission ddmmyy10.;&lt;/DIV&gt;&lt;DIV class=""&gt;72 format Date_of_admission ddmmyyb10.;&lt;/DIV&gt;&lt;DIV class=""&gt;73 cards;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;NOTE: Invalid data for Patent_ID in line 75 1-6.&lt;/DIV&gt;&lt;DIV class=""&gt;NOTE: Invalid data for Age in line 75 8-17.&lt;/DIV&gt;&lt;DIV class=""&gt;NOTE: Invalid data for Date_of_admission in line 76 1-3.&lt;/DIV&gt;&lt;DIV class=""&gt;RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0&lt;/DIV&gt;&lt;DIV class=""&gt;76 300 76 02-05-1987&lt;/DIV&gt;&lt;DIV class=""&gt;NOTE: Invalid data errors for file CARDS occurred outside the printed range.&lt;/DIV&gt;&lt;DIV class=""&gt;NOTE: Increase available buffer lines with the INFILE n= option.&lt;/DIV&gt;&lt;DIV class=""&gt;Patent_ID=. Age=. Date_of_admission=. _ERROR_=1 _N_=2&lt;/DIV&gt;&lt;DIV class=""&gt;NOTE: SAS went to a new line when INPUT statement reached past the end of a line.&lt;/DIV&gt;&lt;DIV class=""&gt;NOTE: The data set WORK.DATE has 3 observations and 3 variables.&lt;/DIV&gt;&lt;DIV class=""&gt;NOTE: DATA statement used (Total process time):&lt;/DIV&gt;&lt;DIV class=""&gt;real time 0.00 seconds&lt;/DIV&gt;&lt;DIV class=""&gt;user cpu time 0.00 seconds&lt;/DIV&gt;&lt;DIV class=""&gt;system cpu time 0.00 seconds&lt;/DIV&gt;&lt;DIV class=""&gt;memory 666.53k&lt;/DIV&gt;&lt;DIV class=""&gt;OS Memory 21156.00k&lt;/DIV&gt;&lt;DIV class=""&gt;Timestamp 01/09/2023 03:27:50 PM&lt;/DIV&gt;&lt;DIV class=""&gt;Step Count 31 Switch Count 2&lt;/DIV&gt;&lt;DIV class=""&gt;Page Faults 0&lt;/DIV&gt;&lt;DIV class=""&gt;Page Reclaims 135&lt;/DIV&gt;&lt;DIV class=""&gt;Page Swaps 0&lt;/DIV&gt;&lt;DIV class=""&gt;Voluntary Context Switches 10&lt;/DIV&gt;&lt;DIV class=""&gt;Involuntary Context Switches 0&lt;/DIV&gt;&lt;DIV class=""&gt;Block Input Operations 0&lt;/DIV&gt;&lt;DIV class=""&gt;Block Output Operations 264&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;78 ;&lt;/DIV&gt;&lt;DIV class=""&gt;79 run;&lt;/DIV&gt;&lt;DIV class=""&gt;80&lt;/DIV&gt;&lt;DIV class=""&gt;81 proc print data=date;&lt;/DIV&gt;&lt;DIV class=""&gt;82 run;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;NOTE: There were 3 observations read from the data set WORK.DATE.&lt;/DIV&gt;&lt;DIV class=""&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;/DIV&gt;&lt;DIV class=""&gt;real time 0.01 seconds&lt;/DIV&gt;&lt;DIV class=""&gt;user cpu time 0.01 seconds&lt;/DIV&gt;&lt;DIV class=""&gt;system cpu time 0.00 seconds&lt;/DIV&gt;&lt;DIV class=""&gt;memory 1146.21k&lt;/DIV&gt;&lt;DIV class=""&gt;OS Memory 21156.00k&lt;/DIV&gt;&lt;DIV class=""&gt;Timestamp 01/09/2023 03:27:50 PM&lt;/DIV&gt;&lt;DIV class=""&gt;Step Count 32 Switch Count 0&lt;/DIV&gt;&lt;DIV class=""&gt;Page Faults 0&lt;/DIV&gt;&lt;DIV class=""&gt;Page Reclaims 80&lt;/DIV&gt;&lt;DIV class=""&gt;Page Swaps 0&lt;/DIV&gt;&lt;DIV class=""&gt;Voluntary Context Switches 0&lt;/DIV&gt;&lt;DIV class=""&gt;Involuntary Context Switches 0&lt;/DIV&gt;&lt;DIV class=""&gt;Block Input Operations 0&lt;/DIV&gt;&lt;DIV class=""&gt;Block Output Operations 8&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;PRE class=""&gt;&amp;nbsp;&lt;/PRE&gt;</description>
      <pubDate>Mon, 09 Jan 2023 15:31:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-correct-the-code/m-p/852830#M337088</guid>
      <dc:creator>Prasad-S</dc:creator>
      <dc:date>2023-01-09T15:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: Better Subject Line Needed</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-correct-the-code/m-p/852837#M337091</link>
      <description>&lt;P&gt;Please copy the log from the SAS log window (just for the entire DATA step, we don't need the rest) and paste it into the window that appears when you click on the &amp;lt;/&amp;gt; icon.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Insert Log Icon in SAS Communities.png" style="width: 859px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66171iFEC370B1DBF07B28/image-size/large?v=v2&amp;amp;px=999" role="button" title="Insert Log Icon in SAS Communities.png" alt="Insert Log Icon in SAS Communities.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2023 17:00:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-correct-the-code/m-p/852837#M337091</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-01-09T17:00:56Z</dc:date>
    </item>
    <item>
      <title>Re: Better Subject Line Needed</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-correct-the-code/m-p/852851#M337097</link>
      <description>&lt;P&gt;If you read this part of your log:&lt;/P&gt;
&lt;PRE&gt;NOTE: Invalid data for Patent_ID in line 75 1-6.
NOTE: Invalid data for Age in line 75 8-17.
NOTE: Invalid data for Date_of_admission in line 76 1-3.
RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0
76 300 76 02-05-1987
NOTE: Invalid data errors for file CARDS occurred outside the printed range.
NOTE: Increase available buffer lines with the INFILE n= option.
Patent_ID=. Age=. Date_of_admission=. _ERROR_=1 _N_=2&lt;/PRE&gt;
&lt;P&gt;You see that the first three lines tell you that a Date_of_admission was read from line 76 when the other two variables were read from line 75. Combine that with the "occurred outside the printed range" one starts to suspect that there are non-printable characters in you code that are not there after pasting into this forum.The indication of reading across lines means that something is interpreted as an end of line and or carriage return depending on your operating system and version of SAS.&lt;/P&gt;
&lt;P&gt;The main message windows on this forum reformat pasted text. So the reformatting may have removed or combined your non-printable characters resulting in code that when we copy it will execute.&lt;/P&gt;
&lt;P&gt;If you copied any or all of your datalines from another program that is a very likely source of non-printable characters and you may need to actually type the example data, or start deleting/entering spaces between any problem values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/438283"&gt;@Prasad-S&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Capture.PNG" style="width: 428px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/79185i4A92BAEEC94E2774/image-dimensions/428x253?v=v2" width="428" height="253" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;
&lt;DIV class=""&gt;68&lt;/DIV&gt;
&lt;DIV class=""&gt;69 data date;&lt;/DIV&gt;
&lt;DIV class=""&gt;70 input Patent_ID Age Date_of_admission;&lt;/DIV&gt;
&lt;DIV class=""&gt;71 informat Date_of_admission ddmmyy10.;&lt;/DIV&gt;
&lt;DIV class=""&gt;72 format Date_of_admission ddmmyyb10.;&lt;/DIV&gt;
&lt;DIV class=""&gt;73 cards;&lt;/DIV&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;NOTE: Invalid data for Patent_ID in line 75 1-6.&lt;/DIV&gt;
&lt;DIV class=""&gt;NOTE: Invalid data for Age in line 75 8-17.&lt;/DIV&gt;
&lt;DIV class=""&gt;NOTE: Invalid data for Date_of_admission in line 76 1-3.&lt;/DIV&gt;
&lt;DIV class=""&gt;RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0&lt;/DIV&gt;
&lt;DIV class=""&gt;76 300 76 02-05-1987&lt;/DIV&gt;
&lt;DIV class=""&gt;NOTE: Invalid data errors for file CARDS occurred outside the printed range.&lt;/DIV&gt;
&lt;DIV class=""&gt;NOTE: Increase available buffer lines with the INFILE n= option.&lt;/DIV&gt;
&lt;DIV class=""&gt;Patent_ID=. Age=. Date_of_admission=. _ERROR_=1 _N_=2&lt;/DIV&gt;
&lt;DIV class=""&gt;NOTE: SAS went to a new line when INPUT statement reached past the end of a line.&lt;/DIV&gt;
&lt;DIV class=""&gt;NOTE: The data set WORK.DATE has 3 observations and 3 variables.&lt;/DIV&gt;
&lt;DIV class=""&gt;NOTE: DATA statement used (Total process time):&lt;/DIV&gt;
&lt;DIV class=""&gt;real time 0.00 seconds&lt;/DIV&gt;
&lt;DIV class=""&gt;user cpu time 0.00 seconds&lt;/DIV&gt;
&lt;DIV class=""&gt;system cpu time 0.00 seconds&lt;/DIV&gt;
&lt;DIV class=""&gt;memory 666.53k&lt;/DIV&gt;
&lt;DIV class=""&gt;OS Memory 21156.00k&lt;/DIV&gt;
&lt;DIV class=""&gt;Timestamp 01/09/2023 03:27:50 PM&lt;/DIV&gt;
&lt;DIV class=""&gt;Step Count 31 Switch Count 2&lt;/DIV&gt;
&lt;DIV class=""&gt;Page Faults 0&lt;/DIV&gt;
&lt;DIV class=""&gt;Page Reclaims 135&lt;/DIV&gt;
&lt;DIV class=""&gt;Page Swaps 0&lt;/DIV&gt;
&lt;DIV class=""&gt;Voluntary Context Switches 10&lt;/DIV&gt;
&lt;DIV class=""&gt;Involuntary Context Switches 0&lt;/DIV&gt;
&lt;DIV class=""&gt;Block Input Operations 0&lt;/DIV&gt;
&lt;DIV class=""&gt;Block Output Operations 264&lt;/DIV&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;78 ;&lt;/DIV&gt;
&lt;DIV class=""&gt;79 run;&lt;/DIV&gt;
&lt;DIV class=""&gt;80&lt;/DIV&gt;
&lt;DIV class=""&gt;81 proc print data=date;&lt;/DIV&gt;
&lt;DIV class=""&gt;82 run;&lt;/DIV&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;NOTE: There were 3 observations read from the data set WORK.DATE.&lt;/DIV&gt;
&lt;DIV class=""&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;/DIV&gt;
&lt;DIV class=""&gt;real time 0.01 seconds&lt;/DIV&gt;
&lt;DIV class=""&gt;user cpu time 0.01 seconds&lt;/DIV&gt;
&lt;DIV class=""&gt;system cpu time 0.00 seconds&lt;/DIV&gt;
&lt;DIV class=""&gt;memory 1146.21k&lt;/DIV&gt;
&lt;DIV class=""&gt;OS Memory 21156.00k&lt;/DIV&gt;
&lt;DIV class=""&gt;Timestamp 01/09/2023 03:27:50 PM&lt;/DIV&gt;
&lt;DIV class=""&gt;Step Count 32 Switch Count 0&lt;/DIV&gt;
&lt;DIV class=""&gt;Page Faults 0&lt;/DIV&gt;
&lt;DIV class=""&gt;Page Reclaims 80&lt;/DIV&gt;
&lt;DIV class=""&gt;Page Swaps 0&lt;/DIV&gt;
&lt;DIV class=""&gt;Voluntary Context Switches 0&lt;/DIV&gt;
&lt;DIV class=""&gt;Involuntary Context Switches 0&lt;/DIV&gt;
&lt;DIV class=""&gt;Block Input Operations 0&lt;/DIV&gt;
&lt;DIV class=""&gt;Block Output Operations 8&lt;/DIV&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;PRE class=""&gt;&amp;nbsp;&lt;/PRE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2023 16:33:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-correct-the-code/m-p/852851#M337097</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-01-09T16:33:04Z</dc:date>
    </item>
    <item>
      <title>Re: Better Subject Line Needed</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-correct-the-code/m-p/852862#M337105</link>
      <description>&lt;P&gt;Thanks for the log, but the problem is on the line of data BEFORE the one that is being listed.&amp;nbsp; Basically the issue seems to be that it did not find a value of the date on the line before so it is hunting for one on the line it is showing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the problem is just that one of the lines is missing a date value you might only need to add an INFILE statement so you can use the TRUNCOVER option to prevent INPUT from going to the next line.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data date;
  infile cards truncover;
  input Patent_ID Age Date_of_admission;
  informat Date_of_admission ddmmyy10.;
  format Date_of_admission ddmmyyb10.;
cards;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or you can just add a single period on the data lines to indicate when one of the three fields is missing.&lt;/P&gt;
&lt;P&gt;See the third line of data in this example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data date;
  input Patent_ID Age Date_of_admission;
  informat Date_of_admission ddmmyy10.;
  format Date_of_admission ddmmyy10.;
cards;
100 56 02/03/1985
200 65 02.03.1986
300 76 .
400 82 02.04.1988
;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 09 Jan 2023 17:07:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-correct-the-code/m-p/852862#M337105</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-01-09T17:07:27Z</dc:date>
    </item>
  </channel>
</rss>

