While using Aspose.Cells to convert HTML to XLSX, the constructor of class Workbook threw the following exception:
An unhandled exception of type ‘Aspose.Cells.CellsException’ occurred in Aspose.Cells.dllMy original HTML input was quite big, but I managed to narrow it down to this:
Additional information: Cells in range A2:A3 cannot be merged because cells in range A1:A2 have already been merged.
The problem does not occur if you make any of the following changes:
Test
One
Two
- Replace
by
(i.e. put a space in front of the slash). - Remove the rowspan (or make it 1).
- Remove the surrounding .The first workaround works for me, so nothing urgent here. But I still consider this to be a bug.