Formula or code for combines numbers with comma

Vishaal

Well-known Member
Joined
Mar 16, 2019
Messages
533
Office Version
  1. 2010
  2. 2007
Platform
  1. Windows
  2. Web
Hi All,

We have the following sheet

Excel 2010 32 bit
A
B
C
1
2
1​
25​
75​
3
2​
36​
74​
4
3​
65​
71​
5
4​
45​
72​
6
5​
82​
7​
7
6​
36​
37​
8
7​
59​
64​
9
8​
54​
98​
10
9​
52​
7​
11
10​
14​
8​
12
11​
58​
1​
13
12​
47​
2​
Sheet: Sheet1

We want to combine the data B2:C13 in D2 and its paste special value in E2

something like this 25,36,65,45,82

data will be increase from B2:C160
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
In excel 2019 or office 365, either

=TEXTJOIN(",",1,B2:C13)

or, array confirmed with Ctrl Shift Enter

=TEXTJOIN(",",1,TRANSPOSE(B2:C13))

In older versions
Code:
Public Function aconcat(a As Variant, Optional sep As String = "") As String
' Harlan Grove, Mar 2002
Dim y As Variant
If TypeOf a Is Range Then
    For Each y In a.Cells
        aconcat = aconcat & y.Value & sep
    Next y
ElseIf IsArray(a) Then
    For Each y In a
        aconcat = aconcat & y & sep
    Next y
Else
    aconcat = aconcat & a & sep
End If
    aconcat = Left(aconcat, Len(aconcat) - Len(sep))
End Function

=ACONCAT(B2:C13,",")

Note that only the second of the 3 methods suggested will produce the exact same format as you specified.
 
Upvote 0
If sequence is important, then consider the following

=TEXTJOIN(",",,B2:C13)
25,75,36,74,65,71,45,72,82,7,36,37,59,64,54,98,52,7,14,8,58,1,47,2
B2, C2, B3, C3......B13, C13

=TEXTJOIN(",",,B2:B13)&"," &TEXTJOIN(",",,C2:C13)

25,36,65,45,82,36,59,54,52,14,58,47,75,74,71,72,7,37,64,98,7,8,1,2
B2,B3.....B13, C2, C3 .....C13


ah - @Peter_SSs got in first :LOL:
 
Last edited:
Upvote 0
please check the error, no value are coming

Excel 2010 32 bit
A
B
C
D
E
1
2
1​
25​
75​
=TEXTJOIN(",",,B2:C13)
Yongle
3
2​
36​
74​
=TEXTJOIN(",",1,B2:B13)&","&TEXTJOIN(",",1,C2:C13)
Peter_SSs
4
3​
65​
71​
=TEXTJOIN(",",1,B2:C13)
jasonb75
5
4​
45​
72​
6
5​
82​
7​
7
6​
36​
37​
8
7​
59​
64​
9
8​
54​
98​
10
9​
52​
7​
11
10​
14​
8​
12
11​
58​
1​
13
12​
47​
2​
Sheet: Sheet1

IInd

Excel 2010 32 bit
A
B
C
D
E
1
2
1​
25​
75​
#NAME?
Yongle
3
2​
36​
74​
#NAME?
Peter_SSs
4
3​
65​
71​
#NAME?
jasonb75
5
4​
45​
72​
6
5​
82​
7​
7
6​
36​
37​
8
7​
59​
64​
9
8​
54​
98​
10
9​
52​
7​
11
10​
14​
8​
12
11​
58​
1​
13
12​
47​
2​
Sheet: Sheet1
 
Last edited:
Upvote 0
Hi,

TextJoin appeared with Excel 2016.
Looks like you're using an older version of excel.
if you have Excel 2016 or higher then maybe because of the regional settings.
Change, in the formula "," with ";" obviously without the quotation marks.
 
Upvote 0
please check the error, no value are coming
You were given the following but have not commented on that ..

In excel 2019 or office 365, either

=TEXTJOIN(",",1,B2:C13)

or, array confirmed with Ctrl Shift Enter

=TEXTJOIN(",",1,TRANSPOSE(B2:C13))

In older versions
Code:
Public Function aconcat(a As Variant, Optional sep As String = "") As String
' Harlan Grove, Mar 2002
Dim y As Variant
If TypeOf a Is Range Then
    For Each y In a.Cells
        aconcat = aconcat & y.Value & sep
    Next y
ElseIf IsArray(a) Then
    For Each y In a
        aconcat = aconcat & y & sep
    Next y
Else
    aconcat = aconcat & a & sep
End If
    aconcat = Left(aconcat, Len(aconcat) - Len(sep))
End Function

=ACONCAT(B2:C13,",")
 
Upvote 0
@jasonb75 qualified his solution with "in excel 2019 or office 365 "
explanation:
#NAME? error tells you that the function is not available in your version of Excel (= Excel cannot find function with that NAME)
 
Last edited:
Upvote 0
.. regional settings.
Change, in the formula "," with ";"
That issue wouldn't normally result in the #NAME ? error though.


Another option is to go back to basics. :)

=B2&","&B3&","&B4&","&B5&","&B6&","&B7&","&B8&","&B9&","&B10&","&B11&","&B12&","&B13&","&C2&","&C3&","&C4&","&C5&","&C6&","&C7&","&C8&","&C9&","&C10&","&C11&","&C12&","&C13
 
Upvote 0
Excel 2010

Another option is to go back to basics. :) only this option...:ROFLMAO:
 
Upvote 0

Forum statistics

Threads
1,214,376
Messages
6,119,181
Members
448,871
Latest member
hengshankouniuniu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top