Trusted Members
December 20, 2019
Depends what version of excel you are running - Office 365 or 2019 you can use Textjoin and it is perfect for what you are asking
Older versions you would have to manually join, which is okay if you only have a couple of numbers to join
it is also possible to cheat if it is only done occasionally
In the results cell type = then select the range, while in edit mode highlight the formula in the formula bar and press f9 to evaluate the formula, remove the = and the numbers are seperated with a semi colon
I am sure there are other options that i have missed
Trusted Members
December 20, 2019
VIP
Trusted Members
December 7, 2016
Here is a good list showing all Excel functions and from which version they are available.
Trusted Members
December 20, 2019
If you cant upgrade then a small macro can do the same thing as textjoin
Sub StringOfNumbtoCell()
Dim NumsRange As Range
Dim NumsCell As Range
Dim D As String
Dim Output As String
D = Range("b1")
Range("d1").ClearContents
Set NumsRange = Range("A:A")
For Each NumsCell In NumsRange
Output = Output & NumsCell & D
If NumsCell = "" Then
Output = Left(Output, Len(Output) - 2)
Range("d1") = Output
Exit Sub
End If
Next NumsCell
End Sub
1 Guest(s)