Here is the code I am using to do a Custom vlookup. It puts spaces in between the results. I need line breaks instead.
Function CusVlookup(lookupval, lookuprange As Range, indexcol As Long)
'updateby Extendoffice 20151118
Dim x As Range
Dim result As String
result = ""
For Each x In lookuprange...