LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (November 2008, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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
Comments: cc: ash007 <RamsamyAshley@gmail.com>,
          karma <dorjetarap@googlemail.com>
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.


Back to: Top of message | Previous page | Main SAS-L page