Can anyone help to find a statement to get all the
predefined formats?
Answers were Sorted based on User's Feedback
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 |
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 |
what are different type of sas servers ? On which server does the sas code execute ?
What are the 3 components in sas programming?
how to remove the duplicates by proc sql?
. Which date advances a date, time or date/time value by a given interval?
how do i read multiple spaces in datasets? eg: vijaya raghava perumal.I tried with using & but it workss if its vijaya raghava but not for raghava perumal.how to do this?
If you?re not wanting any SAS output from a data step, how would you code the data statement to prevent SAS from producing a set?
How can you limit the variables written to output dataset in data step?
how do u identify a macro variable
Which date function advances a date, time or datetime value by a given interval?
If you were told to create many records from one record show how you would do this using arrays and with PROC TRANSPOSE?
how can u import .csv file in to SAS?tell Syntax?
7 Answers CitiGroup, Franklin Templeton,
how to write code for left outer join in SAs using datastep?