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 (January 2004, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Mon, 26 Jan 2004 13:24:48 -0800
Reply-To:     "Choate, Paul@DDS" <pchoate@DDS.CA.GOV>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         "Choate, Paul@DDS" <pchoate@DDS.CA.GOV>
Subject:      Re: Print a format from a format library
Comments: To: Bruce Johnson <bjohnson@SOLUCIENT.COM>

Bruce - something like this...

proc format library=clntdata cntlout=work.var1; select $var1f.; run;

proc print data=var1;

or this

proc format library=library fmtlib; select @eval nozeros; title 'FMTLIB Output for the NOZEROS. Format and the'; title2 'EVAL. Informat'; run;

hth

Paul Choate DDS Data Extraction (916) 654-2160

-----Original Message----- From: Bruce Johnson [mailto:bjohnson@SOLUCIENT.COM] Sent: Monday, January 26, 2004 1:12 PM To: SAS-L@LISTSERV.UGA.EDU Subject: Print a format from a format library

Hello!

I have a SAS format library, and someone wants to see the contents of a particular format in that library. How can I do this? I can use proc catalog to get the list of available formats, but how do I display the contents of a particular format in that list?

Thanks in advance.

_______________________________ Bruce A. Johnson Senior Data Analyst Solucient, LLC (847) 440-9635 bjohnson@solucient.com This message is a private communication. It may contain information that is confidential and legally protected from disclosure. If you are not an intended recipient, please do not read, copy or use this message or any attachments, and do not disclose them to others. Please notify the sender of the delivery error by replying to this message, and then delete it and any attachments from your system. Thank you, Solucient LLC (rev eXclaimer 2x)


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