Hi,
I need to round to the second decimal place (AwayFromZero method):
Convert 2.565 to 2.57
Attempts that did not work:
ROUND(number,2)
CAST(number as Decimal(18,2))
Looks like I could use STR(number, 33, 2) and then CAST it back to Decimal, but I'm wondering if there is a better way. Also, does anyone know what the maximum number of characters a decimal field could create (including '.' and '-' characters (I just guessed at 33)?
thanks,
Ron