Hi mandukes,
If you are talking about the content of a single cell with multiple lines:
Function SingleLine(ByVal rng As Range)
If rng.Cells.Count > 1 Then
MsgBox "Only works with a single cell.", vbInformation
Exit Function
End If
SingleLine = Replace(rng.Value, Chr(10), "")
End Function
Otherwise, if you want to concatenate a number of cells, let's say all the content of A1:B3, try this:
Function ConcatenateRange(ByVal rng As Range)
Dim i As Long, str As String
For i = 1 To UBound(rng.Value)
str = str & Join(Application.Index(rng.Value, i), "")
Next i
ConcatenateRange = str
'ConcatenateRange = replace(str,chr(10),"")
End Function
Cheers, berlan
Bookmarks