Input:
Sub RangeFindWithDoubleType()
Dim strResult As range
With ActiveSheet.range("A2:A11")
On Error Resume Next
Set strResult = .Find(range("D1")).Address
If strResult Is Nothing Then
MsgBox "Value not found"
Else
MsgBox strResult
End If
End With
range("D2") = strResult
End Sub
When double type data is searched using find function, the obtained result is Nothing.
How to find the address for double data type cell?
