Hi
Check out JE McGimpsey's Multcat function
http://www.mcgimpsey.com/excel/udfs/multicat.html
If you use " or Like " as your delimiter, it should work fine.

Signature
Regards
Roger Govier
> Hi,
>
[quoted text clipped - 8 lines]
>
> Jason
Jay
Sub ConCat_Cells()
Dim x As Range
Dim y As Range
Dim z As Range
Dim w As String
Dim sbuf As String
On Error GoTo endit
w = InputBox("Enter the Type of De-limiter Desired")
Set z = Application.InputBox("Select Destination Cell", _
"Destination Cell", , , , , , 8)
Application.SendKeys "+{F8}"
Set x = Application.InputBox("Select Cells...Contiguous or Non-Contiguous", _
"Cells Selection", , , , , , 8)
For Each y In x
If Len(y.text) > 0 Then sbuf = sbuf & y.text & w
Next
z = Left(sbuf, Len(sbuf) - 1)
Exit Sub
endit:
MsgBox "Nothing Selected. Please try again."
End Sub
In de-limiter inputbox enter <space>or like<space>
>Hi,
>
[quoted text clipped - 8 lines]
>
>Jason
Jay - 14 Apr 2007 13:37 GMT
Thanks Guys, most appreciated. I've installed the UDF into my UDF
module & will be trying your vb as well Cord. Many thanks,
Jason
> Jay
>
[quoted text clipped - 34 lines]
>>
>> Jason