View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Douvid Douvid is offline
external usenet poster
 
Posts: 11
Default macros for other applications

yes it is something like that but how do you do a loop on
this ? if possible , because sometimes I have 1000 cells
to merge.

-----Original Message-----
Concatenation is the action you describe

sStr = Range("A1").Value & ", " & Range("B1").Value _
& ", " & Range("C1").Value

is Possibly what you want.

Regards,
Tom Ogilvy

"Douvid" wrote in message
...
Hi,
I can't make the opposite of "text to column" in Excell

(
I mean merging cells but placing a coma between each
value) so I use word to replace paragraph mark by coma.
But how do I writte in my macros the macros that works

in
Word and recall the transfomed data in excell ?
Cheers,
.