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
It is very simple to round a number to any multiple of nearest 10 by using simply the ROUND function for ex:
ROUND
SELECT ROUND(number/1000,2)*1000
This will give you the nearest thousandth value.