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 / surendra

use page break option in the report

Is This Answer Correct ?    1 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what are input dataset and output dataset options? : Sas programming

561


How sas treats the dsd delimiters?

716


what is null hypothesis? why do you consider that?

2416


how sas deals with business intelligence? : Sas-bi

581


How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?

2381






What are the data types that sas contain?

649


I have a dataset concat having variable a b & c. How to rename a b to e & f?

578


what other sas products have you used and consider yourself proficient in using? : Sas programming

679


What are pdv and it functions?

596


Mention how to limit decimal places for the variable using proc means?

641


Where do you use proc means over proc freq?

558


Do you need to rearrange the order of the data for the report?

1830


which date function advances a date, time or datetime value by a given interval? : Sas programming

590


Explain the use of proc gplot? : sas-grid-administration

549


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.

1795