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 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Wed, 5 Jul 2006 09:02:49 -0700
Reply-To:     mahesh.tamboli@GMAIL.COM
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         mahesh.tamboli@GMAIL.COM
Organization: http://groups.google.com
Subject:      Creating subsequent Permanent formats
Comments: To: sas-l@uga.edu
Content-Type: text/plain; charset="iso-8859-1"

Hi there,

I am using a proc format to create formats and use libname option to store this formats into a permanent library. However, refering to the code below. this writes out a permanent format "source" but for the subsequent formats (Internet , Adv, etc) are not written out into the permanent library. I would appreciate if someone could help me understand whats wrong with the code.

Thanks,

Mahesh

libname fmt "path";

proc format library = fmt.application; value source 101 = 'Internet' 102 = 'Adv ' 103 = 'TV ' ;

value Internet 1628 - 1638 = 'Group 1" 1668 - 1678 = 'Group 2"

;

value Adv 1728 - 1738 = 'Group 1" 1768 - 1778 = 'Group 2"

; run;


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