Custom vlookup: need line breaks instead of spaces

Roc314

New Member
Joined
Mar 30, 2018
Messages
4
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
If x = lookupval Then
result = result & " " & x.Offset(0, indexcol - 1)
End If
Next x
CusVlookup = result
End Function

So instead of my data looking like this:
[TABLE="width: 1790"]
<tbody>[TR]
[TD="width: 1790"] Cabinet Type-G1 Inner Finisher-D1 Super G3 Fax Board-AK1 Inner Finisher Additional Tray-A1[/TD]
[/TR]
</tbody>[/TABLE]


It'll look like this:
[TABLE="width: 1790"]
<tbody>[TR]
[TD="width: 1790"]Cabinet Type-G1
Inner Finisher-D1
Super G3 Fax Board-AK1
Inner Finisher Additional Tray-A1
[/TD]
[/TR]
</tbody>[/TABLE]

Someone said to replace: result = result & " " & x.Offset(0, indexcol - 1)
With: result = result & Chr(13) & x.Offset(0, indexcol - 1)
But that isn't working.
Please help.
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.

Forum statistics

Threads
1,223,231
Messages
6,170,884
Members
452,364
Latest member
springate

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top