到目前爲止,我可以在輸入框中輸入一個單詞,並讓它返回特定單詞在特定列中出現的次數。 。我希望它做的是選擇,在出現輸入字的每個小區或者,突出發生的話每個單元下面是我已經:如何選擇列中的多個單元格
Sub wordcounter()
Dim word As String
Dim count As Integer
word = InputBox(Prompt:="Enter word to search: ", Title:="Enter Word", Default:="Search word")
For Each cell In ActiveSheet.UsedRange.Columns("G").Cells
cell.Value = LCase(cell.Value)
If InStr(cell.Value, word) Then
cell.select
End If
If InStr(cell.Value, word) Then
count = count + 1
End If
Next cell
MsgBox (word & " = " & count)
End Sub
此代碼只選擇最後一個單元格這個詞出現的地方。關於如何用單詞而不是最後一個單元格選擇所有單元格的任何想法?
您也可以使用條件格式來實現突出顯示部分。 – nutsch