<< I had looked at that but when I did... SET VAR testing currency = (BRND(1.495,8,.01))
testing = 1.50 not 1.49, I must be missing something... >> The function INT truncates as you want, the trick is to multiply, then divide by 100: SET VAR vRounded = (INT(.vOriginal * 100) / 100) or consider using NUMERIC. -- Larry

