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

You could use this:
$j = int($j)+1 if int($j) != $j;

--Jim

Replies are listed 'Best First'.
Re: Re: How can I round up if any decimal place exists?
by Coplan (Pilgrim) on Nov 26, 2001 at 08:18 UTC
    This (or some variation of it) is working for me just fine. Kudos out to the simple methods.

    Of course, now I'm kicking myself for not thinking of it. Thanks again!

    --Coplan