Click here to Skip to main content
15,921,793 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi Every one

i am new to ssis.i am using excel source and it has sample data.i have show output like this.i have to merge two columns into one column and display it into flat file destination.
how to do that any one tell me please it's urgent


thanking you,
Posted
Comments
Maciej Los 27-Dec-13 2:28am    
What have you done till now? Where are you stuck?

1 solution

Not sure what exactly you are expecting, below sample code is by using Aspose (for Excel operation in C#)

Workbook wb = new Workbook();
Worksheet worksheet = wb.Worksheets[0];
worksheet.Cells.Merge(0, 0, 1, 2);  //Parameters of Merge method are firstRow, firstColumn, totalRows, totalColumns
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900