【发布时间】:2023-04-06 16:03:01
【问题描述】:
我的 Excel 是这样的
A B C D
1 2 3
我用这个,
Dim row As DocumentFormat.OpenXml.Spreadsheet.Row = sheetData.Descendants(Of DocumentFormat.OpenXml.Spreadsheet.Row)().FirstOrDefault(Function(y) y.RowIndex.Value = 1)
我的结果中只有 3 个单元格(B、C、D)。我如何包含空格?
【问题讨论】: