我创建了一个程序,通过Spreadsheet Gear从Excel文件中返回特定列。这是我的While循环:
while (Worksheet.Cells[ExcelRow, 1].Value != null)
{ //to do code here
}
当为null时,我的代码返回行的空单元格 - 即使我在这里指定的不是。
对于数据网格中为空的所有单元格,它返回0。有没有办法在Excel文件中显示为空的单元格?
答案 0 :(得分:0)
您可以使用SpreadsheetGear API确定使用过的单元格。尝试使用:
IWorksheet.UsedRange
这会将电子表格的已用部分作为IRange返回。