I'm trying to compute the total number of words that contain any of the letters "j", "a", "d", "e".
If the word for example, was "Jacket" then it would be counted. The entire macro goes through a list of words in column A and rows 3 to 373659.
Dim count As Long
Dim word As String
Dim row As Long
count = 0
For row = 3 To 373659
word = Cells(row, 1).Value
If InStr(word, "j") Or InStr(word, "a") Or InStr(word, "d") Or InStr(word, "e") Then
count = count + 1
End If
Next row
Is this code correct? Can it be improved?