Is it possible to easily round a figure up to the nearest 100 (or 1000, 500, 200 etc.) in SQL Server?
So:
720 -> 800 790 -> 800 1401 -> 1500
This will work for the values with decimal also.
select floor((ceiling (@value) + 99) / 100) * 100;