如何在C#中检查Excel范围是否为空

前端之家收集整理的这篇文章主要介绍了如何在C#中检查Excel范围是否为空前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想使用C#检查范围(行*列中的单元格)是否为空.我可以遍历细胞,但任何更好的方式和更快的方式?从选定/活动单元格获取范围以及行数和列数的任何方法

解决方法

我想 Excel.WorksheetFunction.CountA不仅可以使用工作表,还可以使用任何Range参数:

Use CountA to count the number of cells that contain data in a range
or array.@H_301_9@

A value is any type of information,including error values and empty
text (“”). A value does not include empty cells.@H_301_9@

If an argument is an array or reference,only values in that array or reference are used. Empty cells and text values in the array or reference are ignored.@H_301_9@

猜你在找的C#相关文章