有没有办法使用OpenXML-SDK& amp;读取excel表格列而不是行。 C#。
我已经尝试过使用EPPlus包,但遇到了一些问题,因为我的应用程序也使用了EPPlus不支持的“.xslm”文件。因此,我需要一个OpenXML解决方案来读取列中的数据。
如果有人有例子,那会有所帮助。
由于 斯
答案 0 :(得分:2)
WorksheetPart worksheetPart = (WorksheetPart)document.WorkbookPart.GetPartById(sheets.First().Id);
// Get the cells in the specified column and order them by row.
IEnumerable<Cell> cells = worksheetPart.Worksheet.Descendants<Cell()
.Where(c => string.Compare(GetColumnName(c.CellReference.Value),
columnName, true) == 0).OrderBy(r => GetRowIndex(r.CellReference));
foreach (var cell in cells)
{
}