次のコードで型の不一致エラーが発生します。なんで?
If (Range("C:C").Find(What:=last_received, After:=ActiveCell, LookIn:= _
xlFormulas, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:= _
xlNext, MatchCase:=False, SearchFormat:=False)) is Nothing Then
tic = 1
End If
また、Range変数を作成してnotingに設定し、以下のコードを使用しましたが、それでも同じエラーが発生します:
If (Range("C:C").Find(What:=last_received, After:=ActiveCell, LookIn:= _
xlFormulas, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:= _
xlNext, MatchCase:=False, SearchFormat:=False)) = rr Then
tic = 1
End If