Hello everyone, if I want know the location of a variable 's format what can I do? please look the example code below. Image two people A and B. people A create a dataset one use the code below. and people B don't know how data set one was created by A, but B want know its variable 'age 's format location(c:\mylib). how to do it? can we use information from sashelp.vformat? or any other method? Thanks libname mylib "c:\mylib"; proc format library=mylib; value fmt_age 0-13 = 'AAA' other ='BBB'; run; option fmtsearch=(mylib); data one; set sashelp.class; format age fmt_age.; run; ---------- Thank you Jagadishkatam and Hai.kuo: I summarized it: method 1: proc sql; create table need1 as select a.libname, a.fmtname, b.path from dictionary.formats a, dictionary.libnames b where UPCASE(FMTNAME)='FMT_AGE' AND A.LIBNAME=B.LIBNAME;quit; method2 proc sql; create table need2 as select a.libname, a.fmtname, b.path from sashelp.vformat a, sashelp.vlibnam b where UPCASE(FMTNAME)='FMT_AGE' AND A.LIBNAME=B.LIBNAME;quit;
... View more