Can anyone help to find a statement to get all the
predefined formats?

Answers were Sorted based on User's Feedback



Can anyone help to find a statement to get all the predefined formats?..

Answer / 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

Can anyone help to find a statement to get all the predefined formats?..

Answer / cutepa1

Hi Diya! Thanks for your valuable answer. I shall start to
work with this.
Thank you.

Is This Answer Correct ?    0 Yes 0 No

Can anyone help to find a statement to get all the predefined formats?..

Answer / chandu

Tanks diya... it works.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SAS Interview Questions

how do u identify a macro variable

5 Answers  


Can you explain the process of calendar?

0 Answers  


i have a data set with 20 observations i want label from 8 to 15 observations ? how you create this one.

6 Answers   CTS,


where are dashboard components are created and maintained? : Sas-bi

0 Answers  


What is by-group processing?

0 Answers  






Explain input and put function?

0 Answers  


data abc; input x y ; cards; 1 2 5 6 7 8 7 8 1 7 5 7 ; run; Proc Freq data=abc; tables x*y / chisq nopercent nocol norow PLCORR; RUN; If we run the code, we have Polychoric Correlation = 0.9054 in the last table. I want to extract this particular entry with the value. Means I will create one dataset in which this value will be stored/extracted. I need your help in coding this. Please help me out.

2 Answers  


what is the difference between infile and input? : Sas-administrator

0 Answers  


for what purpose would you use the retain statement? : Sas programming

0 Answers  


i am importing large data from oracle to work library. in log there is a error message worklibrary space is not enough. then how to import the data safely to sas environment.

2 Answers   Cap Gemini,


Mention what is the difference between nodupkey and nodup options?

0 Answers  


What is instream data in SAS?

1 Answers  


Categories