Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() I have some words in 50 different cells, how can I put them togehter into 1 single cell and seperated by comma by a formula. Thank you very much. -- eeehwc ------------------------------------------------------------------------ eeehwc's Profile: http://www.excelforum.com/member.php...o&userid=26704 View this thread: http://www.excelforum.com/showthread...hreadid=488331 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Enter and use this tiny UDF:
Function concat(r As Range) As String Dim rr As Range concat = "" For Each rr In r concat = concat & rr.Value Next End Function -- Gary''s Student "eeehwc" wrote: I have some words in 50 different cells, how can I put them togehter into 1 single cell and seperated by comma by a formula. Thank you very much. -- eeehwc ------------------------------------------------------------------------ eeehwc's Profile: http://www.excelforum.com/member.php...o&userid=26704 View this thread: http://www.excelforum.com/showthread...hreadid=488331 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Note that this doesn't separate the entries by a comma.
See http://www.mcgimpsey.com/excel/udfs/multicat.html for an alternative. In article , Gary''s Student wrote: Enter and use this tiny UDF: Function concat(r As Range) As String Dim rr As Range concat = "" For Each rr In r concat = concat & rr.Value Next End Function -- Gary''s Student "eeehwc" wrote: I have some words in 50 different cells, how can I put them togehter into 1 single cell and seperated by comma by a formula. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If
A1 = Have A2 = a A3 = nice A4 = Holiday then in B1 enter = A1&" "&A2&" "&A3&" "&A4 B1 will show Have a nice holiday HTH "eeehwc" wrote in message ... I have some words in 50 different cells, how can I put them togehter into 1 single cell and seperated by comma by a formula. Thank you very much. -- eeehwc ------------------------------------------------------------------------ eeehwc's Profile: http://www.excelforum.com/member.php...o&userid=26704 View this thread: http://www.excelforum.com/showthread...hreadid=488331 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Or, separated by a comma:
=A1 & "," & A2 & "," & A3 & "," & A4 In article <RCZhf.28032$4l5.1211@dukeread05, "JMay" wrote: If A1 = Have A2 = a A3 = nice A4 = Holiday then in B1 enter = A1&" "&A2&" "&A3&" "&A4 B1 will show Have a nice holiday HTH "eeehwc" wrote in message ... I have some words in 50 different cells, how can I put them togehter into 1 single cell and seperated by comma by a formula. Thank you very much. -- eeehwc ------------------------------------------------------------------------ eeehwc's Profile: http://www.excelforum.com/member.php...o&userid=26704 View this thread: http://www.excelforum.com/showthread...hreadid=488331 |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
sorry, before my 2nd cup of coffee;;
da.......... "JMay" wrote in message news:RCZhf.28032$4l5.1211@dukeread05... If A1 = Have A2 = a A3 = nice A4 = Holiday then in B1 enter = A1&" "&A2&" "&A3&" "&A4 B1 will show Have a nice holiday HTH "eeehwc" wrote in message ... I have some words in 50 different cells, how can I put them togehter into 1 single cell and seperated by comma by a formula. Thank you very much. -- eeehwc ------------------------------------------------------------------------ eeehwc's Profile: http://www.excelforum.com/member.php...o&userid=26704 View this thread: http://www.excelforum.com/showthread...hreadid=488331 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Urgent - Help VBA Macro | Excel Discussion (Misc queries) | |||
"Urgent" use script to share the workbook | Excel Discussion (Misc queries) | |||
Shared Workbook Problem, Urgent | Excel Discussion (Misc queries) | |||
Count the occurence of multiple (4 conditions). - Need urgent help | Excel Discussion (Misc queries) | |||
Urgent Urgent Urgent!!! | Excel Discussion (Misc queries) |