Creates a summary report of
all formats used with associated variables and data
sets. %fmtsum (fmtpath=format catalog path,
datname=dataset name,
backcode=file name,
output = output file name);
Where |
Is Type... |
And represents... |
fmtpath | C (optional) | Directory path to the location of the format
catalog. |
datname | C (optional) | The name
of the dataset which contains variables which uses the
formats. If this is left blank, all the formats in the format
catalog will be reported. The parameter is specified with a
two level name such as libanme.dataset. |
backcode | C (optional) | File name of a new
SAS program which contains code of the PROC FORMAT.
|
output | C (optional) | File name of output
html file which contains report of all formats. If this is left
blank, this file will be created at current location.
|
Details This
tool evaluates the format catalog and associated SAS datasets and produces
a summary report of all formats used. In addition to create a
report, a data set named WORK.FMTSUM and WORK.FMTSUMVAR is also available
which contains the same information.
![](note.gif) | Multiple data sets
can be specified through the DATNAME parameter. In this case,
separate out the data sets by spaces. | Example %fmtsum(fmtpath=c:\myfolder\with\format\catalog);
%fmtsum(fmtpath=c:\myfolder\with\format\catalog,
datname=templib.mydata);
|