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.
Answer Posted / guest
Using width= option on define statement in proc report.
| Is This Answer Correct ? | 1 Yes | 8 No |
Post New Answer View All Answers
If a variable contains only numbers, can it be a character data type?
What is SAS?
Define run-group processing?
What are symget and symput? : sas-macro
what is broad cast agent? : Sas-bi
What do the PUT and INPUT functions do?
How you are maintaining sas programmes in your company...any specific version control software you are using? If so, tell me the name?
WHAT IS SAS WEB SERVICE and what are the steps to create an xml service ?
Mention the validation tools used in SAS?
How do you test for missing values?
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data?
What is the general format of function in sas? : sas-grid-administration
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 will calendar procedure do?
explain the concepts and capabilities of business object? : Sas-bi