If all of the variables in the dataset are numeric you can use
FORMATS ALL (F8.0).
Where the format specified in the parenthesis after the period gives
the desired number of decimal places. If not all of the variables are
numeric you can use a TO statement, such as;
FORMATS V1 to V50 (F8.0).
This is nice because you can sort variables by whether they are
numeric, and then get them all in one swoop with a TO statement. Note
this just changes the variable format in the display, it doesn't alter
the data.
Andy W