Hello, I need to know if SAS EG has the capabilities of rounding up to the third decimal place if there is a fourth numeric value when doing the division? I understand the round/ceil/floor functions but I'm not getting the expected results. Data: 17/30 = .5666666666666667 = output = .567 (correct) 1/30 = .03333333333333 = output = .033 (incorrect) wanting output to be .034 I understand the ROUND function is working properly but I'm needing the third decimal to round up if there is a 4th value period. This is currently what is coded: ROUND(((INPUT(t1.'QUANTITY LIMIT AMOUNT'n, best10.))/(INPUT(t1.'QUANTITY LIMIT DAYS'n, best10.))),0.001
... View more