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