軟體:EXCEL
版本:2010
Function CountifMe(MyRange,MyCriteria)
For Each cell in MyRange
If cell = MyCriteria then 計數 = 計數 + 1
Next
CountifMe = 計數
End Function
一般情形下可正常使用 但有個問題是
當MyRange是整欄的情況下(如A:A)
函數會執行好一下子
當然這是可以理解的 畢竟For Each cell要跑100多萬遍
只是我就好奇 內建的Countif函數是用甚麼方式
即使範圍是整欄 仍然可以迅速計算結果呢
請指教 謝謝