* make output left justified (not centered); options nocenter;* assign libname containing input data; * change path to refer to your input data; libname in ‘/local2/samples/sas/ats/’;
* assign filename for output cport file, placing it in /work ; * /work is for temporary storage, use your directory for permanent storage; filename out ‘/work/winners.cport’;
* use proc cport to copy in.winners into /work/winners.cport ; * change winners to the name of your sas data member; proc cport data=in.winners file=out; run;