Date: Wed, 11 Dec 2002 09:23:23 -0500
Reply-To: "Michael S. Zdeb" <msz03@HEALTH.STATE.NY.US>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Michael S. Zdeb" <msz03@HEALTH.STATE.NY.US>
Subject: SAS au Fromage
Content-type: text/plain; charset=us-ascii
Hi...quick way to create a comma-separated value file from a SAS data
set...
data _null_;
file 'c:\brie.csv' dsd;
set feta;
*** write only variables in data set feta;
put (_all_) (:);
run;
Mike Zdeb
New York State Department of Health
ESP Tower - Room 1811
Albany, NY 12237
P/518-473-2855 F/630-604-1475
|