what is the difference between proc report and proc format?
Answers were Sorted based on User's Feedback
Answer / basha
proc report:it is used to producing summary reports,and
user requirement format reports
it displays seperarte window that is report window
it gives differnt style options and format options
it has different statistical computations
proc format:it is user defined format applied different
variable it is used one session only
it doesnt display any output.it is temporary format
we can call these formats in dataseps as well as proc steps
| Is This Answer Correct ? | 12 Yes | 1 No |
Answer / ramdwh
The Report procedure enables a user to create:
 listing reports
 summary reports
 enhance reports
 request separate subtotals and grand totals
 generate reports in an interactive point-and-click
or programming environments.
Note:
By default, the default listing displays
 each data value as it is stored in the data set,
or formatted value if a format is stored with the data
 variable names or labels as report column headings
 a default width for the report columns
 character values left-justified
 numeric values right-justified
 observations in the order in which they are stored
in the data set.
FORMAT Procedure enables SAS to define custom formats
(character/numeric) and can also apply the format to a
specific variable(s) by using a FORMAT statement.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / b v krishna reddy
format procedure is used for generates user defined formats.
report procedure is used for that formats are assigned
using put and input functions.
these functions used only dataset block and report
procedure only.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / sat
Proc format is variable specific and proc report is
customizing the output for a datset.
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / 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 |
Answer / rajaanku11
1.proc format doesnt give any output after execution but
report can.
2.foramt is global for the entire session and can be called
any where in sas(data steps or procs).But proc report is
not global.
3.format is used to create user defined formats and report
for user defined listings or outputs.
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / venkatesh.layam
proc report is used for reporting
proc format is used in report for reporting purpose
| Is This Answer Correct ? | 0 Yes | 6 No |
%STPbegin;%STPEND; ERROR: No logical assign for filename _WEBOUT. WARNING: No body file. HTML output will not be created. unable to fix it.plz help
do you prefer proc report or proc tabulate? Why? : Sas programming
What sas features do you use to check errors and data validation?
How to save the log information in a file for future use
If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable?
how would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable? : Sas programming
Can Some one Explain How the Datasets from SAS can be loaded in to the MVS OS?
What are some problems you might encounter in processing missing values? In Data steps? Arithmetic? Comparisons? Functions? Classifying data?
my problem is to export my report to xsl.i can do that.but the problem is my report has 3 headings first heading should be printed with the merging of (1-5)cells and heading 2 should be of merge(2-4)cells?how to do this condition?
how are numeric and character missing values represented internally? : Sas programming
what are the methods that you would employ to fine tune your SQL extract process using SAS/Access or Proc SQL?
What is the difference between an informat and a format. Name three informats or formats.