Can anyone help to find a statement to get all the
predefined formats?
Answer Posted / diya
to use the permanent format catalog the statement is
libname a 'c:\sas\files';
options fmtsearch=(a.treesfmt);
proc print data=a.trees (obs=5) label;
run;
To use your permanent sas data set eith user-defined
fortmat for the future sas sessions you need to
1. assign a sas library to location of the sas format
catalog.
2. specfiy the name of the sas format catalog with the ftm
seacrch option.
for info this website
http://www.umass.edu/statdata/software/handouts/SASLevel2.pd
f
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
how do you test for missing values? : Sas programming
Name types of category in which SAS Informats are placed?
what is the use of proc sql? : Sas programming
What are the scrubbing procedures in sas?
which features do you use to check the data validations and errors? : Sas-administrator
I have a dataset concat having variable a b & c. How to rename a b to e & f?
describe about physical data integration? : Sas-di
How many data types are there in SAS?
explain the difference between proc means and proc summary?
what do the sas log messages "numeric values have been converted to character" mean? What are the implications? : Sas programming
What does P-value signify about the statistical data?
What does proc print, and proc contents are used for?
How do you define proc in sas? : sas-grid-administration
what is study design in while working with SAS? what are screening variables in SAS?
Can you execute macro within another macro? If so, how would sas know where the current macro ended and the new one began? : sas-macro