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 / venu
use with global option pagesize=10;
| Is This Answer Correct ? | 0 Yes | 8 No |
Post New Answer View All Answers
Explain by-group processing?
how can you put a "trace" in your program? : Sas programming
What does P-value signify about the statistical data?
What are the ways to do a “table lookup” in sas?
What is the work of tranwrd function?
describe about physical data integration? : Sas-di
What is the maximum and minimum length of macro variable
What are the 3 components in sas programming?
What is the sas data set? : sas-grid-administration
What is the length assigned to the target variable by the scan function?
what are validation tools that are used in sas? : Sas-administrator
In ARRAY processing, what does the DIM function do?
What is the use of divide function?
what are 5 ways to perform a table lookup in sas? : Sas-administrator
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.