使用ClosedXML插入数据表时如何处理合并的单元格?

时间:2015-03-30 07:51:00

标签: datatable closedxml

我正在使用ClosedXML,它有一个名为InsertData的方法来插入DataTable,如下所示:

var rangeWithData = worksheet.Cell(row, cell).InsertData(dataTable.AsEnumerable());

如此处所述:ClosedXML Inserting data

在我的xml中,我有一个合并列,它会导致错过数据表中的一列。 有没有办法处理它仍然使用InsertData方法或我应该循环数据表...?

1 个答案:

答案 0 :(得分:0)

如果您事先知道哪些单元格已合并,则可以使用InsertData并相应地准备DataTable

如果您不知道必须使用循环并在到达合并单元格时移动数据。