1
2
3
4
5
6
7
8
9
* (Q) Many columns in the data editor are way too large. How
 could I easily reduce the size of all these columns?

* (A) Posted to SPSSX-L by Ray on 2002/04/03.
* The following will set all columns to 5 characters width.

DO REPEAT var=ALL.
VARIABLE WIDTH var(5).
END REPEAT.