|
... did you format the values for output? E.g. with
format value1 value2 20.11;
Example:
1 data test;
2 a=5/3;
3 format a 20.11;
4 put a;
5 run;
1.66666666667
NOTE: The data set WORK.TEST has 1 observations and 1 variables.
NOTE: The DATA statement used 0.61 seconds.
|