Hi Experts, Would like to consult regarding the round function. Given the value 123.456 for a, how come this turns out to be the value when I use the round function. ROUND parameter a = 123.456 Result b = round(a,0.01) 123.46 (ok) b = round(a,0.02) 123.46 (ok) b = round(a,0.03) 123.45 (?) b = round(a,0.04) 123.44 (?) b = round(a,0.05) 123.45 (?) b = round(a,0.06) 123.48 (?) b = round(a,0.07) 123.48 (?) b = round(a,0.08) 123.44 (?) b = round(a,0.09) 123.48 (?) Is there a bug on the round function or is there something I am not aware on how it derives into these results. Thanks!
... View more