cjiii I can't get ROUND( x, n) to work, so I implemented the definition using INT and 0.5, which as given in the text also doesn't work for me. I rewrite that as ROUND( x, n) = INT( ( x + ( 0.5 * ( 10n))) / ( 10n)) * ( 10n) that produces the three example results in the text.
mcc Hello, cjiii, This works for any value of n: option nolet x=35.893 n=2 print print, x, round( x,n) get key zz end Try n=-2, -1, 0, 1, 2, 3, 4,... I don't see what the problem could be with your setup. What is in your code? Regards, Mike C.