The Softartisans' ExcelWriter v8 seems having a bug on merged cell formula. For example:
ExcelApplication xla = new ExcelApplication();
Workbook wb = xla.Create(ExcelApplication.FileFormat.Xlsx);
area = ws.CreateArea(1, 0, 1, 2);
area.MergeCells();
cell = ws.Cells[area.FirstRow, area.FirstColumn];
cell.Formula = "=A1”;
The formula will be disappeared on the worksheet.
BTW, it works on xls format.
Is there an acceptable workaround?