软件:EXCEL
版本:2010
自订一个函数
Function CountStr(范围, 字串)
For Each cell In 范围
过渡 = (Len(cell) - Len(Application.Substitute(cell, 字串, ""))) / Len(字串)
CountStr = CountStr + 过渡
Next
End Function
这个函数目的是要回传储存格内有几个指定的字串
原本使用好好的 最近发现 当储存格的字符 >=256 时 函数会错误
请问我该在哪边做什么宣告 来解决这个问题呢
谢谢