I need to round numbers up to the nearest 50
IE
80 = 100
110 = 150
1 = 50
I'm using this code and am get mostly the desired results except some
80 = 150
What can I do to fix this.
Im calling it in a query like this
PadQty: RoundToNearest([Qty],50)
Function RoundToNearest(dblNumber As...