<?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 Reading the number of records in a INPUT file in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34272#M8346</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FriedEgg: Can you point me to a link that describes what those differences might be?&amp;nbsp; Howard usually has very good reasons for making the comments he makes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Oct 2011 17:25:35 GMT</pubDate>
    <dc:creator>art297</dc:creator>
    <dc:date>2011-10-25T17:25:35Z</dc:date>
    <item>
      <title>Reading the number of records in a INPUT file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34260#M8334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following code that I use to get the number of records in my INPUT file.&amp;nbsp; I was wondering if there is a better (or newer) way to do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;PRE&gt;&lt;/PRE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, Nancy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2011 15:44:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34260#M8334</guid>
      <dc:creator>SASHunter</dc:creator>
      <dc:date>2011-10-25T15:44:21Z</dc:date>
    </item>
    <item>
      <title>Reading the number of records in a INPUT file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34261#M8335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the recCount number being kept in your dataset is not important that you could instead use the automatic record number counter variable _n_&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data x;&lt;/P&gt;&lt;P&gt;&amp;nbsp; infile prange_t end=last;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if last then call symputx('cntr04p',put(_n_,best.));&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%put &amp;amp;cntr04p;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2011 15:52:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34261#M8335</guid>
      <dc:creator>FriedEgg</dc:creator>
      <dc:date>2011-10-25T15:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: Reading the number of records in a INPUT file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34262#M8336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure if there is a better way (other than using PIPE to call a system tool such the wc command of Unix).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should use DATA _NULL_ rather than creating an actual dataset.&lt;/P&gt;&lt;P&gt;You should move your IF loop to before the INPUT statement to handle the case when the file is empty.&lt;/P&gt;&lt;P&gt;You should update CALL SYMPUT to CALL SYMPUTX which will automatically convert your numeric variable to a character string for storing in the macro variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;filename prange_t 'poutofrngpi07.lis';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; height: 8pt;"&gt;data _null_;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if last then call symputx('cntr04p', recCount);&lt;/P&gt;&lt;P&gt;&amp;nbsp; INFILE prange_t END=last;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input;&lt;/P&gt;&lt;P&gt;&amp;nbsp; recCount + 1;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%put Records in PRANGE_T = &amp;amp;cntr04p;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2011 15:57:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34262#M8336</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2011-10-25T15:57:37Z</dc:date>
    </item>
    <item>
      <title>Reading the number of records in a INPUT file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34263#M8337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree but with one change that Howles pointed out a couple of weeks ago.&amp;nbsp; We really ought to stop recommending using "best" as a format as it is really just a substitute for the true value (e.g., 32.) and calling it best leads one to think that it is doing something special.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2011 16:00:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34263#M8337</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2011-10-25T16:00:29Z</dc:date>
    </item>
    <item>
      <title>Re: Reading the number of records in a INPUT file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34264#M8338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tom,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you explain to me how moving the IF statement before the INFILE statement works!?&amp;nbsp; I am confused about this since it hasn't even attempted to read the file yet.&amp;nbsp; I've seen it written that way before in examples and don't understand it. The DATA _NULL_ part I was going to do because all I need is the count.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, Nancy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2011 16:25:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34264#M8338</guid>
      <dc:creator>SASHunter</dc:creator>
      <dc:date>2011-10-25T16:25:22Z</dc:date>
    </item>
    <item>
      <title>Re: Reading the number of records in a INPUT file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34265#M8339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think of it as SAS looking ahead and setting the END= variable before it tries to read the next line.&lt;/P&gt;&lt;P&gt;SAS will actually exit the data step at the INPUT statement when it reads past the end of the file.&amp;nbsp; So for a file with N lines the data step starts N+1 times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is an example SAS log from reading a three line file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;195&lt;/P&gt;&lt;P&gt;196&amp;nbsp; data _null_;&lt;/P&gt;&lt;P&gt;197&amp;nbsp;&amp;nbsp; put 'TOP ' (_n_ eof) (=);&lt;/P&gt;&lt;P&gt;198&amp;nbsp;&amp;nbsp; infile example end=eof ;&lt;/P&gt;&lt;P&gt;199&amp;nbsp;&amp;nbsp; input ;&lt;/P&gt;&lt;P&gt;200&amp;nbsp;&amp;nbsp; put 'BOTTOM ' (_n_ eof) (=);&lt;/P&gt;&lt;P&gt;201&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: The infile EXAMPLE is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Filename=...\Temp\SAS Temporary Files\_TD7068\#LN00016,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RECFM=V,LRECL=256,File Size (bytes)=9,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Last Modified=25Oct2011:12:32:57,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Create Time=25Oct2011:12:32:57&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TOP _N_=1 eof=0&lt;/P&gt;&lt;P&gt;BOTTOM _N_=1 eof=0&lt;/P&gt;&lt;P&gt;TOP _N_=2 eof=0&lt;/P&gt;&lt;P&gt;BOTTOM _N_=2 eof=0&lt;/P&gt;&lt;P&gt;TOP _N_=3 eof=0&lt;/P&gt;&lt;P&gt;BOTTOM _N_=3 eof=1&lt;/P&gt;&lt;P&gt;TOP _N_=4 eof=1&lt;/P&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2011 16:35:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34265#M8339</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2011-10-25T16:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: Reading the number of records in a INPUT file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34266#M8340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So we can simplify the code even more by using the automatic counter _N_, we just need to remember to subtract one for the extra time it starts the step.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if eof then call symputx('nobs',_n_-1);&lt;/P&gt;&lt;P&gt;&amp;nbsp; infile example end=eof ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2011 16:46:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34266#M8340</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2011-10-25T16:46:10Z</dc:date>
    </item>
    <item>
      <title>Reading the number of records in a INPUT file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34267#M8341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK,&amp;nbsp; so what it is doing is trying to set the EOF variable, is that because the first PUT statement has the eof in it?&amp;nbsp; And the _N_ seems to be wrong because you said it is a three line file, but _N_ finishes as with four.&amp;nbsp; That's why I didn't use _N_, but used a counter instead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nancy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2011 16:49:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34267#M8341</guid>
      <dc:creator>SASHunter</dc:creator>
      <dc:date>2011-10-25T16:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: Reading the number of records in a INPUT file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34268#M8342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The _N_ is right, but it does not count observations. It counts interations of the data step.&amp;nbsp; &lt;/P&gt;&lt;P&gt;The main point of testing before the input statement is that SAS stops when it reads past the end of file, so the statements following the input statement never execute for an empty input file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2011 16:58:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34268#M8342</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2011-10-25T16:58:20Z</dc:date>
    </item>
    <item>
      <title>Reading the number of records in a INPUT file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34269#M8343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tom,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&amp;nbsp; Your explanation really helped me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nancy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2011 17:11:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34269#M8343</guid>
      <dc:creator>SASHunter</dc:creator>
      <dc:date>2011-10-25T17:11:52Z</dc:date>
    </item>
    <item>
      <title>Reading the number of records in a INPUT file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34270#M8344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is another way to do this, will only work on *nix machines or under windows with cygwin, but per my testing is a slightly faster method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;filename cntr04p pipe "wc -l /usr/share/dict/words";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt;&amp;nbsp; infile cntr04p;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input cntr04p filename $;&lt;/P&gt;&lt;P&gt; call symputx('cntr04p',cntr04p);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2011 17:17:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34270#M8344</guid>
      <dc:creator>FriedEgg</dc:creator>
      <dc:date>2011-10-25T17:17:54Z</dc:date>
    </item>
    <item>
      <title>Reading the number of records in a INPUT file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34271#M8345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In this specific case these act as substitutes however there are definitly significant differences between the bestw. and w.d formats.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2011 17:18:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34271#M8345</guid>
      <dc:creator>FriedEgg</dc:creator>
      <dc:date>2011-10-25T17:18:58Z</dc:date>
    </item>
    <item>
      <title>Reading the number of records in a INPUT file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34272#M8346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FriedEgg: Can you point me to a link that describes what those differences might be?&amp;nbsp; Howard usually has very good reasons for making the comments he makes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2011 17:25:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34272#M8346</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2011-10-25T17:25:35Z</dc:date>
    </item>
    <item>
      <title>Reading the number of records in a INPUT file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34273#M8347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was talking about the BEST &lt;STRONG&gt;in&lt;/STRONG&gt;format, not format, or at least that was my intent.&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;&lt;P&gt;art297 wrote:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I agree but with one change that Howles pointed out a couple of weeks ago.&amp;nbsp; We really ought to stop recommending using "best" as a format as it is really just a substitute for the true value (e.g., 32.) and calling it best leads one to think that it is doing something special.&lt;/P&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2011 02:09:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34273#M8347</guid>
      <dc:creator>Howles</dc:creator>
      <dc:date>2011-10-26T02:09:38Z</dc:date>
    </item>
    <item>
      <title>Reading the number of records in a INPUT file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34274#M8348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then I stand (actually sit) corrected!&amp;nbsp; Howard, you've forced me to do the dreaded task of reading the manual.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are right, of course, but now that I've read at least that section of the manual, I'd recommend recommending the bestd format.&amp;nbsp; The link to the documentation is: &lt;A href="http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a003171706.htm"&gt;http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a003171706.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2011 03:23:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34274#M8348</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2011-10-26T03:23:02Z</dc:date>
    </item>
    <item>
      <title>Reading the number of records in a INPUT file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34275#M8349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, the bestw.d informat is a direct alias of the w.d informat, an important distinction...&amp;nbsp; Outputs from the formats w.d, bestw.d, and bestdw.p for integer values should be virtually identical until the integer values reach extremes and the formats start converting to scientific notation at different points and sometimes with different percision that eachother.&amp;nbsp; The output of the bestw.d and bestdw.p (when the same w is used and default p value) should be identical for all integers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2011 18:23:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reading-the-number-of-records-in-a-INPUT-file/m-p/34275#M8349</guid>
      <dc:creator>FriedEgg</dc:creator>
      <dc:date>2011-10-26T18:23:21Z</dc:date>
    </item>
  </channel>
</rss>

