LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (July 2006, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Tue, 25 Jul 2006 21:48:26 +0000
Reply-To:     toby dunn <tobydunn@HOTMAIL.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         toby dunn <tobydunn@HOTMAIL.COM>
Subject:      Re: Format listing
Comments: To: kijoeng@GMAIL.COM
In-Reply-To:  <69196f0c0607251442h7d97b321mae7b64ac790c3d83@mail.gmail.com>
Content-Type: text/plain; format=flowed

Here is an example for you:

/** Create a Format To print out**/

Proc Format ; Value Test 1 = 'A' 2 = 'B' 3 = 'C' Other = 'ZZZ' ; Run ;

/** Get Format Information Into a Data Set **/

Proc Format CntLout = MyFormat ; Select Test ; Run ;

/** Print Format Info. Out **/

Proc Print Data = MyFormat ; Run ;

Toby Dunn

From: Kijoeng Nam <kijoeng@GMAIL.COM> Reply-To: Kijoeng Nam <kijoeng@GMAIL.COM> To: SAS-L@LISTSERV.UGA.EDU Subject: Format listing Date: Tue, 25 Jul 2006 17:42:28 -0400

Hellow,

I only have sas data format without dataset and

I want to check the format since I need to compare those formats with

with another format.

Can I list them without dataset or not?

If I can , how can I do it?

Thanks in advance.


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