Hi Aspose Team,
I get this exception while performing load HTML to Workbook.
Pseudocode below -
byte[] byteArray = Encoding.UTF8.GetBytes(html);
using (MemoryStream stream = new MemoryStream(byteArray))
{
return new Workbook(stream);
}
Normally these code working fine and we got excellent excel file. but sometime when we do some large and complicate HTML . we got the exception like this
Cells in range K5:L5 cannot be merged because cells in range K4:L5 have already been merged.
we think you can reproduce this problem using attach file.
I am not sure is there a merge problem inside the HTML . but even it is a problem .
I still need a way to bypass those error and let user get an Excel file (we don't need perfect Excel)
Could you please advice whether we have any workaround?
Thanks!