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 |
Name statements that are recognized at compile time only?
If you were told to create many records from one record show how you would do this using arrays and with PROC TRANSPOSE?
Why do we use QUIT commmand for proc datasets and proc sql ???
How is character variable converted into numeric variable and vice versa?
what does the run statement do? : Sas programming
Explain what is the use of proc gplot?
What is the use of %include statement?
Describe the function and utility of the most difficult SAS macro that you have written?
/* To determine the maximum and minimum of V1 */ data before3; input v1 v2 v3; cards; 3 2 1 4 6 5 2 1 3 6 5 4 1 3 2 5 4 6 ; run;
Hi im new to sas. I have a file with some charecter variables and some numeric variables now i want to load charecter variables into one datastep and numeric variables into another data step pls let me know Thanks
What is _n_?
Hi, I need to create a SAS Map of USA using SAS Graphs(Proc Gmap).The data i have dosent contain any co-ordinates of USA cities or counties or states, and the zip codes are diffrent in the data i have from the zip code in the Maps.US dataset in the Maps Library for SAS MAPS. the data i have is a sales report. i have to generate the maps according to the states,cities aligned in the sales data, HELP Appriciated