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


Please Help Members By Posting Answers For Below Questions

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

855


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.

2032


what is enterprise guide? What is the use of it? : Sas programming

754


How does the internal authentication work in sas? : sas-grid-administration

840


What versions of SAS have you used (on which platforms)?

1257


how do you pull data from equifax?tell me the process?

1576


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

2476


How are numeric and character missing values represented internally?

1392


Can you execute macro within another macro? : sas-macro

753


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

1528


How do dates work in SAS data?

917


how do you test for missing values? : Sas programming

787


what is program data vector? : Sas-administrator

840


How do you add a number to a macro variable? : sas-macro

751


What is the basic syntax style in SAS?

844