
getting values form two cells so both values show in one cell
I want to add this to J.E and Niek solution
maybe nice to if you want to add a lot of cells
put the function in a module
Function MYCONCATONATOR(table As Range, delimiter As String)
For Each cell In table
MYCONCATONATOR = MYCONCATONATOR & cell & delimiter
Next
MYCONCATONATOR = Left(MYCONCATONATOR, Len(MYCONCATONATOR) - 1)
End Function
'and call it like a regular one:
'=MYCONCATONATOR(A1:A3,"?")
'=MYCONCATONATOR(A1:A10," / ")
--
Regards Ron
www.rondebruin.nl/Google.htm
Quote:
> is it possible to have two or more cell values appear in one cell
> i.e
> cell a1 = dog
> cell b2 = cat
> so the end result would be cell c2 = dog cat
> chuck