Created
April 5, 2019 04:10
-
-
Save DataSolveProblems/7df5e4a2893f95d4988dafbb63c67bdf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Public Function Vlookup2(ByVal Lookup_Value As String, ByVal Cell_Range As Range, ByVal Column_Index As Integer) As Variant | |
Dim cell As Range | |
Dim Result_String As String | |
On Error GoTo errHandle | |
For Each cell In Cell_Range | |
If cell.Value = Lookup_Value Then | |
If cell.Offset(0, Column_Index - 1).Value <> "" Then | |
If Not Result_String Like "*" & cell.Offset(0, Column_Index - 1).Value & "*" Then | |
Result_String = Result_String & ", " & cell.Offset(0, Column_Index - 1).Value | |
End If | |
End If | |
End If | |
Next cell | |
Vlookup2 = LTrim(Right(Result_String, Len(Result_String) - 1)) | |
Exit Function | |
errHandle: | |
Vlookup2 = "" | |
End Function |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment