<html><body><div style="color:#000; background-color:#fff; font-family:HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;font-size:8pt"><div>With the help of Ken White, Kenneth Brody and Robert T. Repko, I was able to find a solution to my problem.<br></div><div style="color: rgb(0, 0, 0); font-size: 10.6667px; font-family: HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif; background-color: transparent; font-style: normal;"><br></div><div style="color: rgb(0, 0, 0); font-size: 10.6667px; font-family: HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif; background-color: transparent; font-style: normal;">>>>Problem>><br>If I have a calculated number of 46949.5, I need it to round the nearest hundreds "after" dropping the decimal.<br clear="none"><br clear="none">So the steps would proceed like this:<br clear="none">1. 46,949.5 becomes 46,949<br clear="none">2. 46,949 rounds to
the nearest hundreds to become 46,900</div>>>>>><br><br>Solution (works for 46949.500 & 46959.500)<br><br>::wa(12,.5)="46949.500"<br>::wa=wa+50 '46959.5<br>::wu(8,.0)=int(wa)/"100" '469<br>::51=wu * "100" '46900<br><br>::wa(12,.5)="46959.500"<br>::wa=wa+50 '47009.5<br>::wu(8,.0)=int(wa)/"100" '470<br>::51=wu * "100" '47000<br><br>Thanks Everyone!!<br><br>Matt Sherrill<br></div></body></html>