![]() |
|
#1
|
|||
|
|||
|
I have about 120,000 of rows with entries in A column . I want to combine all entries in Column A into one cell seperating them by semicolon but l get timed out or excel doesnt capture all in one cell. I need help in getting this done even if Vba. Any and all help will be appreciated.
Column A 1. 0088900 2. 0089334 3. 0008994 4. Engen and Sons Until 120000. 0995789 Output = 0088900;0089334;0008994;Engen and Sons;.............until;0995789 All help appeciated |
|
#2
|
||||
|
||||
|
The number of characters per cell is limited to 256 I think
__________________
Using O365 v2503 - Did you know you can thank someone who helped you? Click on the tiny scale in the right upper hand corner of your helper's post |
|
#3
|
|||
|
|||
|
So are you saying its impossible to concatenate using VBA even if it outputs to Word document? All help appreciated on this. Thanks
|
|
#4
|
|||
|
|||
|
shilabrow,
Does it help if you Save As a CSV file ? In addition to Excel hat can then be opened in the likes of Notepad, WordPad, Word etc. Hope that helps. |
|
#5
|
|||
|
|||
|
Thanks Snakehips, I thought of that as well but when I tried it - it didn't give me the result as CSV. Am I saving it wrong or what? I just get a list with no comma or semicolon.
Is there a way to set a comma delimited option to it. Thanks so much for your help, much appreciated. |
|
#6
|
||||
|
||||
|
Read my post and your question. There was never any indication of using Word.
__________________
Using O365 v2503 - Did you know you can thank someone who helped you? Click on the tiny scale in the right upper hand corner of your helper's post |
|
#7
|
|||
|
|||
|
If you are using Excel 2007 + then you can have 32,767 characters per cell although Excel cannot display that many characters.
Assuming your data starts A1 and column B is available then the following will concatenate column A data, separated by a semi-colon, in cells B1:B??. Each cell will hold approx 32000 characters. Right click your sheet tab >> View Code and paste the below into the code pane. Code:
Sub con()
Application.ScreenUpdating = False
lr = Cells(Rows.Count, 1).End(xlUp).Row
Set Rng = Range("B1")
For r = 1 To lr
Rng.Value = Rng.Value & ";" & Range("A" & r).Value
If Len(Rng.Value) > 32000 Then Set Rng = Rng.Offset(1, 0)
Next r
End Sub
I processed 120000 rows in under 1 minute. When done, select the range B1:B?? Copy and paste into a word document. Hope that helps. |
|
#8
|
|||
|
|||
|
Thanks Snakehips, works. Appreciate all the help.
|
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Get multiple cells in separate worksheet
|
kerkstrt | Excel | 1 | 10-26-2014 11:20 PM |
| Link multiple cells in drop-down lists | Trial4life | Excel | 0 | 09-08-2014 05:08 AM |
| Counting cells with multiple complex criteria | TishyMouse | Excel | 12 | 12-06-2012 05:05 AM |
How to merge multiple records into one and update the cells
|
mag | Excel | 1 | 10-30-2012 01:11 AM |
Multiple VLOOKUP's checking multiple Cells
|
OTPM | Excel | 11 | 05-23-2011 11:18 AM |