Now I note that you round 50 up to 100. I'd guess you want to round all
values UP to the nearest 100, even 101 becomes 200..?
If so, adjust the formula to:
=(CEILING($R3,100)/1000)*$U3
Finally, you can display the result with a different number of decimal
places to suit, or actually round the result within the formula.
Come back if I'm not on the right track.
--
p45cal
*p45cal*
------------------------------------------------------------------------
p45cal's Profile: http://www.thecodecage.com/forumz/member.php?userid=558
View this thread: http://www.thecodecage.com/forumz/showthread.php?t=157072
[url="http://www.thecodecage.com"]Microsoft Office Help[/url]
=R3*(7.3/1000)
Or, if you want a single column:
=R3*(U3/U$2)
You may need to play around with the number of decimals shown, or the ROUND
function, but this looks like an easier way, and I was able to get it to work
for all of your examples.
--
Best Regards,
Luke M
*Remember to click "yes" if this post helped you!*