Saturday, October 27, 2007

format

/* formats.sas7bcat is saved under h:\temp */

libname ex 'h:\temp';

proc format library=ex;
value sev 1='mile'
2='moderate'
3='severe';
run;


/* To use the permanent format */
libname ff 'h:\temp';
options fmtsearch=(ff);

No comments: