Remain 1 columns and convert 2 column to many Rows

mohammaduir

New Member
Joined
Oct 6, 2020
Messages
2
Office Version
  1. 2010
Platform
  1. Windows
I want to marge the same data from Column A and remain in the same previous Column.
Then every data in Column B converts to one separate Column (Many data in this Column are common), and data of Column C (for every raw) comes to below of new related Column.

It should be noted that the total number of data is very large (more than 100,000 rows)

For example:

Column A
(Name)
Column B
(box)
Column C
(number)
Aaabox12
Aaabox55
Aaabox69
Bbbbox38
Bbbbox61
Cccbox13
Cccbox35
Cccbox54
Cccbox101

I want it to look like this

Column A
(Name)
Column B
(box1)
Column C
(box3)
Column D
(box5)
Column E
(box6)
Column F
(box10)
Aaa259
Bbb81
Ccc3541

thanx a lot.
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
(Name)(box)(number)(Name)box1box5box6box3box10
Aaabox12Aaa259
Aaabox55Bbb18
Aaabox69Ccc3451
Bbbbox38
Bbbbox61
Cccbox13
Cccbox35
Cccbox54
Cccbox101

Power Query:
let
    Source = Excel.CurrentWorkbook(){[Name="Table4"]}[Content],
    Pivot = Table.Pivot(Source, List.Distinct(Source[#"(box)"]), "(box)", "(number)", List.Sum)
in
    Pivot
 
Upvote 0
Cross posted Remain 1 columns and convert 2 column to many Rows
and Remain 1 columns and convert 2 column to many Rows - OzGrid Free Excel/VBA Help Forum

While we do allow Cross-Posting on this site, we do ask that you please mention you are doing so and provide links in each of the threads pointing to the other thread (see rule 13 here along with the explanation: Forum Rules). This way, other members can see what has already been done in regards to a question, and do not waste time working on a question that may already be answered elsewhere.

If you have asked this question on any other sites please supply links.
 
Upvote 0
@mohammaduir
You were asked to provide links to all other sites, not only have you failed to do so, you have now cross posted this at even more sites.
You must supply all relevant links.
 
Upvote 0

Forum statistics

Threads
1,214,780
Messages
6,121,527
Members
449,037
Latest member
tmmotairi

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