軟體:EXCEL
版本:2010
自訂一個函數
Function CountStr(範圍, 字串)
For Each cell In 範圍
過渡 = (Len(cell) - Len(Application.Substitute(cell, 字串, ""))) / Len(字串)
CountStr = CountStr + 過渡
Next
End Function
這個函數目的是要回傳儲存格內有幾個指定的字串
原本使用好好的 最近發現 當儲存格的字元 >=256 時 函數會錯誤
請問我該在哪邊做什麼宣告 來解決這個問題呢
謝謝