Date: Sun, 23 Nov 2008 15:43:57 -0500
Reply-To: Ian Whitlock <iw1sas@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Ian Whitlock <iw1sas@GMAIL.COM>
Subject: Re: View Sas Formats
Content-Type: text/plain; charset=ISO-8859-1
Ashley,
Karma showed you how to get the format names. If you want to see the labels use
proc format lib = REFCAT fmtlib ;
run ;
If out would rather manipulate them then use
proc format lib = REFCAT cntlout=fmtdata ;
run ;
In either case add SELECT statement to restrict the selection of formats.
After manipulation you can use
proc format lib = REFCAT cntlin=modified_fmtdata ;
run ;
--
Ian Whitlock
Date: Sun, 23 Nov 2008 04:23:50 -0800
Reply-To: ash007 <RamsamyAshley@GMAIL.COM>
Sender: "SAS(r) Discussion"
From: ash007 <RamsamyAshley@GMAIL.COM>
Organization: http://groups.google.com
Subject: View Sas Formats
Comments: To: sas-l
Content-Type: text/plain; charset=ISO-8859-1
Hello everybody,
Is someone know how can I view the differents formats of my format lib
REFCAT please because when I click on a error msg appear. Thanks.
OPTIONS FMTSEARCH = (REFCAT.FORMATS);
ash007.