MOREFUNC

L

lehigh46

Hi All:

For some reason Morfunc is not working.
I tried re-installing it, but after that Excel does not recognize it
anywhere.
I spcificly need it for MCOCAT

I am using XP Pro & Excell Office 2007

Thanks for any help that anyone can give me.

Tom
 
B

Bob Phillips

You can write your own UDF

Function Concat(Delim As String, ParamArray rng())
Dim i As Long
Dim tmp As String
Dim cell As Range

For i = LBound(rng) To UBound(rng)

For Each cell In rng(i)

tmp = tmp & cell.Value & Delim
Next cell
Next i

Concat = Left(tmp, Len(tmp) - 1)
End Function
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top