How to merge cells in excel using infragistics.
Hi,Thanks for the above solution. It really helped me a lot.
Hi Bhanu,
I am just checking if you manage to merge cells as you need or you need any further assistance.
You can use WorksheetMergedCellsRegion and add the cells you want to be Merged:
// Create a merged region that will be a header to the column headers
Infragistics.Documents.Excel.WorksheetMergedCellsRegion mergedRegion1 =
worksheet.MergedCellsRegions.Add( 0, 1, 0, 3 );
for more information you can see the following link.