|
增加了x=2时,查询值模糊反向精确查询。
Function iVlookup(inText As String, inRng1 As Range, inRng2 As Range, x As Byte) As String
iVlookup = ""
arr1 = inRng1.Value
arr2 = inRng2.Value
If UBound(arr1) <> UBound(arr2) Or UBound(arr1, 2) <> UBound(arr2, 2) Then Exit Function
If x = 0 Then
For i = 1 To UBound(arr1)
If arr1(i, 1) = inText Then
iVlookup = iVlookup & arr2(i, 1) & ","
End If
Next
iVlookup = Left(iVlookup, Len(iVlookup) - 1)
End If
If x = 1 Then
For i = 1 To UBound(arr1)
If InStr(arr1(i, 1), inText) > 0 Then
iVlookup = iVlookup & "{" & arr1(i, 1) & "," & arr2(i, 1) & "};"
End If
Next
iVlookup = Left(iVlookup, Len(iVlookup) - 1)
End If
If x = 2 Then
For i = 1 To UBound(arr1)
If InStr(inText, arr1(i, 1)) > 0 Then
iVlookup = iVlookup & "{" & arr1(i, 1) & "," & arr2(i, 1) & "};"
End If
Next
iVlookup = Left(iVlookup, Len(iVlookup) - 1)
End If
End Function |
|