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
You can use this code, assuming your amount is an int. If not you will need to cast, so you get integer division.
amount
If amount % 100 != 0 Then roundedAmount = ((amount / 100) * 100) + 100 Else roundedAmount = amount
You might want to package this into a user defined function.