Arsenal176
MIS
Hi,
I'm trying to round a decimal(18,2) to the nearest whole number (<=.49 should round down, >=.50 should round up).
I've tried casting as decimal(18,0) but this rounds 1.50 up and 2.50 down (odd numbers round up, even numbers round down).
casting as integer just truncates the last 2 digits.
How can I do it so that .50 always goes up??