my problem is to export my report to xsl.i can do that.but
the problem is my report has 3 headings first heading
should be printed with the merging of (1-5)cells and
heading 2 should be of merge(2-4)cells?how to do this
condition?
Answer Posted / ankit
may be it is possible in macros when we use index function and compress function
data value;
infile 'val.txt' DSD delimiter='09'x MISSOVER lrecl=5000 ;
informat No :best. ;
informat Name:$75. ;
format Sl :best. ;
format Name :$75. ;
input
Sl_No :best.
Name_Of_Salon :$75. @;
if index (Name_Of_Salon,'"') gt 0 then do;
input / Name_Of_Salon_a :$75. @;
run;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
explain the use of % includes a statement in sas? : Sas-administrator
how to change the execute of macro
What is the different between functions and PROCs that calculate the same simple descriptive statistics?
what is the Population you used in your project, is it ITT or PP?
what are the softwares and applications that are used most frequently used by sas bi applications developers? : Sas-bi
Explain the special input delimiters used in sas programming.
which features do you use to check the data validations and errors? : Sas-administrator
What is connection profile? : sas-grid-administration
How would you code a macro statement to produce information on the sas log? This statement can be coded anywhere? : sas-macro
How to limit decimal places for the variable using proc means?
What versions of SAS have you used (on which platforms)?
How to convert a numeric variable to a character variable?
In proc transpose and data step with arrays which one you pick?
hi all, I need the SAS DI DUMP(A00 260) for attending the certification. if any one have, pls provide it.Please Email to vrpotluri@hotmail.com. Thanks - Ramana
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.