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


Please Help Members By Posting Answers For Below Questions

what is data integration? : Sas-di

610


Tell me about % include and % eval? : sas-macro

678


hi tell be about pfizer? how to compare the work with other companies ? please tell me how to login and work also?

1660


What are the automatic variables for macro? : sas-macro

672


How do dates work in sas?

639






explain about data integrator metadata reports? : Sas-di

558


what is the difference between nodup and nodupkey options? : Sas programming

617


how does sas handle missing values in a merge? : Sas programming

551


How many ways to overcome a missing values???

2332


Mention sas system options to debug sas macros.

659


How would you identify a macro variable? : sas-macro

528


How do you convert basic cube to transaction cube and transaction cube to basic cube?

1770


is data integration and etl programming is same? : Sas-di

574


How would you include common or reuse to be processed along with your statements?

1896


If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable? : sas-macro

593