I have 50 variables in one data set, In reports i want to
generate every 10 variables in one page how we will write
code in proc report.
Answers were Sorted based on User's Feedback
proc report data=xyz nowd headline ps=14;
columns < > ;
define < > ;
run;
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / guest
Using width= option on define statement in proc report.
| Is This Answer Correct ? | 1 Yes | 8 No |
How could i automate the code in the scenario:Every month one new data set will be created for that perticular month transaction list.Now i would like to update the data in the source table by appending every month data automatically. jan---set jan; feb---set jan feb; mar---set jan mar;
what are the sites did u refer for enquiries and doubts for SAS
How to convert a numeric variable to a character variable?
where will go the observations that were deleted by delete statement?
Can we use where and having clauses in a single SAS program. ex: proc sql; select a,b,c from test where state in 'KA' and having <some condition>. Is the above program run correctly, if not why ?
what are _numeric_ and _character_ and what do they do? : Sas programming
Is the physical structure of the data set in the same orientation as the report? Do you need to reshape the data sets? What method should you use to reshape the data–DATA steps,PROC TRANSPOSE,output data set from a procedure?
Did you used proc test? when?
0 Answers Accenture, Quintiles,
for report generation which one you used proc report or data_null_?
3 Answers Accenture, Quintiles,
What are the applications primarily used by business analyst? : Sas-bi
Describe the ways in which you can create macro variables?
What is Tabulate.?Why we use it.? Which type of output we get from Tabulate.?