what is the difference between proc report and proc format?
Answer Posted / sheetal
proc format is used in table lookup...It is used to create
a user define format which can be used for reporting
purpose.
proc report is used to create report. Can be used system
defined or user defined (created using proc format) formats
Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
what is the difference between infile and input? : Sas-administrator
data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.
what is enterprise guide? What is the use of it? : Sas programming
How does the internal authentication work in sas? : sas-grid-administration
What versions of SAS have you used (on which platforms)?
how do you pull data from equifax?tell me the process?
I am preparing SAS Certified Advanced Programmer for SAS 9 in 2014. If anybody has the latest dumps for this exam, please mail me at dhiman.mukherjee@gmail.com
How are numeric and character missing values represented internally?
Can you execute macro within another macro? : sas-macro
I have 3 years of work experience at a startup and recently got certified in Data Science with SAS. I need to know how to get into the analytics industry
How do dates work in SAS data?
how do you test for missing values? : Sas programming
what is program data vector? : Sas-administrator
How do you add a number to a macro variable? : sas-macro
What is the basic syntax style in SAS?