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?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / vk
i think we can export the report only to III party files
like html,rtf and pdf only. But not to xls(excel).
| Is This Answer Correct ? | 2 Yes | 10 No |
explain the key concept of sas? : Sas-administrator
i have a null dataset with 10 variables; i want to print only name of the varibales in log window and also output window.how can we do this one?
What would you change about your job?
what are the component of range? : Sas-bi
sas macros
Write a SAS macro to calculate number of numbers in an email address
"What is the difference between proc sort nodup and proc sort nodupkey?"
is there any differnce between proc means and proc summary?
What are the difficulties u faced while doing vital signs table or dataset?
Difference Between Scan and Substr
What would the following datastep do? Data _null_; Set Dist end=eof; Call Symput("xx"!!left(put(_n_,2.)),&dimension); If EOF then Call Symput('numrows',left(put(_n_,2.))); Run; dimension is a macro variable that is being passed here
if x=round(26.3,10)-1 then x= how much and how explain?