I have a dataset which has many variables all with numerical values wil decimals.
A
12.456756
134.677546
1.44563
86.56674998675
I want only two decimals in the variable I used format but it is only for display.
data want;
set have;
format A best5.2;
run;
But when I copy the dataset to another library or Oracle it shows the whole decimal values., how can I cut the value only to two decimal places?