標題:
[發問]
判別關鍵字數量
[打印本頁]
作者:
a703130
時間:
2013-4-1 22:52
標題:
判別關鍵字數量
請教各位大大
我想判別關鍵字
從Column 6 到 Column 10
想算每個Column ,紅色 NG 的數目,
以及加總的數目
請問要如何使用VBA計算??
作者:
Hsieh
時間:
2013-4-2 11:11
本帖最後由 Hsieh 於 2013-4-2 11:15 編輯
回復
1#
a703130
Sub nn()
restr = InputBox("輸入關鍵字串", , "NG")
With ActiveSheet
For i = 6 To 10
a = .Range(.Cells(1, i), .Cells(.Rows.Count, i).End(xlUp))
mystr = Join(Application.Transpose(a), "")
x = x + (Len(mystr) - Len(Replace(mystr, restr, ""))) / 2
MsgBox "第" & i & "欄" & (Len(mystr) - Len(Replace(mystr, restr, ""))) / Len(restr) & "個" & restr
Next
MsgBox "總計有" & x & "個" & restr
End With
End Sub
複製代碼
歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)