in reply to Re^2: Round up 3 values to the next 100
in thread Round up 3 values to the next 100

I guess this will work....
$a is the number to be rounded
#!/usr/bin/perl -w $a=78345; $b=100; $c=$a/$b; $d=$c; $c=~s/\..*//; if( $d > $c ){ $c++; } $c*=100; print $c,"\n";
$c will have the result