我使用以下代码搜索工作表,以了解“示例”一词出现的次数。
count = Application.WorksheetFunction.CountIf(Range("A1:A10"), "example")
我似乎无法弄清楚如何使用Range函数迭代整个工作表。
答案 0 :(得分:3)
为什么需要遍历整个工作表?你可以改变范围扩展吗?
A1:A10
count = Application.WorksheetFunction.CountIf(Range("A1:A10"), "example")
A1:E10
count = Application.WorksheetFunction.CountIf(Range("A1:E10"), "example")
整张表
count = Application.WorksheetFunction.CountIf(ActiveSheet.Cells, "example")
答案 1 :(得分:1)
请尝试以下方法在整张表中查找字符串“example”。
Count = Application.WorksheetFunction.CountIf(Cells, "example")
使用通配符
Count = Application.WorksheetFunction.CountIf(Cells, "*example*")