| Date: | Mon, 7 Aug 2006 12:13:41 -0400 |
| Reply-To: | "Rickards, Clinton (GE Money)" <clinton.rickards@GE.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | "Rickards, Clinton (GE Money)" <clinton.rickards@GE.COM> |
| Subject: | Re: printing only the columns (column names and lables) of a data
set |
|
| In-Reply-To: | A<1154962601.541418.3710@h48g2000cwc.googlegroups.com> |
| Content-Type: | text/plain; charset="iso-8859-1" |
Try:
proc print data=sashelp.vcolumn;
where libname = "????" and memname = "XXXXX";
var libname memname;
run;
make sure you upcase the values of libname and memname...
Clint
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU]On Behalf Of tina
Sent: Monday, August 07, 2006 10:57 AM
To: SAS-L@LISTSERV.UGA.EDU
Subject: printing only the columns (column names and lables) of a data
set
Hello,
is it possible - and if yes, how - to print only the column names and
column lables of a large data set (126 columns)?
Regards, Tina
|