in reply to Re: Re: count number of pages in two datafiles
in thread count number of pages in two datafiles

Ok, then once you have $linecount (from whatever method), find the number of pages with
my $linesperpage=56; my $pagecount; if ($linecount%$linesperpage == 0) { $pagecount = $linecount/$linesperpage; } else { $pagecount = int($linecount/$linesperpage) +1; }