Board logo

標題: [發問] 判別關鍵字數量 [打印本頁]

作者: 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
  1. Sub nn()
  2. restr = InputBox("輸入關鍵字串", , "NG")
  3. With ActiveSheet
  4. For i = 6 To 10
  5.    a = .Range(.Cells(1, i), .Cells(.Rows.Count, i).End(xlUp))
  6.    mystr = Join(Application.Transpose(a), "")
  7.    x = x + (Len(mystr) - Len(Replace(mystr, restr, ""))) / 2
  8.    MsgBox "第" & i & "欄" & (Len(mystr) - Len(Replace(mystr, restr, ""))) / Len(restr) & "個" & restr
  9. Next
  10. MsgBox "總計有" & x & "個" & restr
  11. End With
  12. End Sub
複製代碼





歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)