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
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.