in reply to How can I round up if any decimal place exists?

Know how many DP you're dealing with? If /20, then 2 in .05 increments, so:
my $pageCount = int( ($total/20) + .99 );
will work fine.

timtowtdi :-)

cLive ;-)