For Each rng In Range("B1:B21200")
If rng.Value <> "" Then
Set out = Range("A1:A2100").Find(rng.Value)
If Not out Is Nothing Then
igo = out.Address
End If
Do While Not out Is Nothing
out.Font.ColorIndex = 3
Set out = Range("A1:A2100").FindNext(out)
If igo = out.Address Then
Exit Do
End If
Loop
End If
Next
このマクロはRange("B1:B21200")でRange("A1:A2100")を検索し一致する文字列を赤文字(A列の文字)にするのですが
このマクロだと、あいまいな検索になってしまいます。
完全に一致する文字列のみ赤文字にするマクロ文を知りたいのですが。
お礼
あっ そうか lookAt:= xlWholeを付け足すんですね。ありがとうございました。