Formula needed to copy certain data from Rows to Columns

txart

New Member
Joined
Oct 15, 2011
Messages
14
I am sure this is a simple fix for the experienced Excel user... and I apologize if this is explained in other threads. I could not find what I needed after two hours of searching. Anyhow... here it is... I have a file that is over 400,000 fields by two. A small portion of the file looks like:

A B
1 214570 porch
2 214570 realism
3 214570 red
4 214570 rocking
5 214570 rocking chairs
6 214570 traditional
7 51528 aa ap115
8 51528 abstract
9 51537 aa ap170
10 51537 alfred
11 51537 arrangement
12 51537 blue
13 51537 contemporary
14 51537 cornflower
.... and so on for 400,000 more fields

What I need to do is collect the data so the sku number is field A is not repeated and the info in B is collected all in one cell. So, it would look something like:

A B
1 214570 porch, realism, red, rocking, etc.
2 51528 aa ap115, abstract
3 51537 aa ap170, alfred, arrangement, etc


This seems easy to do... but I can't figure out a way. Your help would be greatly appreciated. Thanks.
 
GTO...... When I put the cursor over the UBOUND... instead of

UBound(aryData, 1)=45000

I got....

UBound(aryData, 1)=2

Is there a way for me to change that to 45000? I hit f5 and nothing happened.
 
Upvote 0

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
With everything exactly as was when you tested, run this:

Rich (BB code):
Sub ACK()
Dim r As Range
    
    Set r = Cells(Rows.Count, 1).End(xlUp)
    MsgBox r.Address(0, 0) & " is located on " & r.Parent.Name & " in workbook: " & r.Parent.Parent.Name
End Sub
What's it say?
 
Upvote 0
Sorry, I should have included that it should say the address of the last cell in SKUs, along with the name of the sheet that your data is on, and the name of the workbook that the data resides in. I feel safe in assuming that this is not the case?

Do you have the ability to upload the wb to Boxnet or some such share site. If you do, please ensure the file is saved in 97-2003 format (extension of .xls).

EDIT:

In VBIDE look at the project window. Does the module you placed the code in belong to the workbook with the data?
 
Last edited:
Upvote 0
Do you have the ability to upload the wb to Boxnet or some such share site. If you do, please ensure the file is saved in 97-2003 format (extension of .xls).
I would also be interested in seeing a copy of your workbook as the last code I posted works fine here on the sample data I made from your posting.

EDIT:

In VBIDE look at the project window. Does the module you placed the code in belong to the workbook with the data?
That was a good question to ask! The answer may well be at the root of the OP's problem.
 
Upvote 0

Forum statistics

Threads
1,216,028
Messages
6,128,399
Members
449,447
Latest member
M V Arun

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