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 |
What other SAS features do you use for error trapping and data validation?
How necessary is it to be creative in your work?
Briefly describe 5 ways to do a "table lookup" in sas.
Why Info School? BUILD YOUR CAREER WITH RIGHT GUIDANCE AND SUPPORT
what is syntax of proc merge ?
which domain is better in sas? clinical trails or banking
We want to merge file A and B. File A has variable age, file B provide birthdate. How to merge the data according to age in file B
List down the reasons for choosing sas over other data analytics tools.
Do you need to rearrange the order of the data for the report?
Describe the types of SAS programming tasks that you performed like Tables? Listings? Graphics? Ad hoc reports? Other?
Under what circumstances would you code a SELECT construct instead of IF statements?
How would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable?