微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

我想使用C#检查范围(行*列中的单元格)是否为空.我可以遍历细胞,但任何更好的方式和更快的方式?从选定/活动单元格获取范围以及行数和列数的任何方法

解决方法

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

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

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

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.

原文地址:https://www.jb51.cc/csharp/91530.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐