Consolidating Data - there has to be an easy way!

MentalBlock45

New Member
Joined
Oct 3, 2018
Messages
1
Hi all, hope you can help please!!

I have a s/sheet with many columns of categories (types of items sold) that have our stores (listed as store numbers) listed from high to low in each column. I want to create a summary tab for each store, listing their rank in each category. Top is what I have, bottom is what I am after. Thanks!!

[TABLE="width: 348"]
<tbody>[TR]
[TD][/TD]
[TD]Tires[/TD]
[TD]Brakes[/TD]
[TD]Oil Change[/TD]
[TD]Glass Repair[/TD]
[/TR]
[TR]
[TD][/TD]
[TD="align: right"]512[/TD]
[TD="align: right"]425[/TD]
[TD="align: right"]512[/TD]
[TD="align: right"]425[/TD]
[/TR]
[TR]
[TD][/TD]
[TD="align: right"]478[/TD]
[TD="align: right"]478[/TD]
[TD="align: right"]989[/TD]
[TD="align: right"]478[/TD]
[/TR]
[TR]
[TD][/TD]
[TD="align: right"]685[/TD]
[TD="align: right"]512[/TD]
[TD="align: right"]478[/TD]
[TD="align: right"]685[/TD]
[/TR]
[TR]
[TD][/TD]
[TD="align: right"]989[/TD]
[TD="align: right"]685[/TD]
[TD="align: right"]425[/TD]
[TD="align: right"]989[/TD]
[/TR]
[TR]
[TD][/TD]
[TD="align: right"]425[/TD]
[TD="align: right"]989[/TD]
[TD="align: right"]685[/TD]
[TD="align: right"]512[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Shop 425[/TD]
[TD] Rank[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Tires[/TD]
[TD="align: right"]5[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Brakes[/TD]
[TD="align: right"]1[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Oil Change[/TD]
[TD="align: right"]4[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Glass Repair[/TD]
[TD="align: right"]1[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
If I understand correctly this should work

Book1
ABCD
1TiresBrakesOil ChangeGlass Repair
2512425512425
3478478989478
4685512478685
5989685425989
6425989685512
7
8
9
10
11Shop 425Rank
12Tires5
13Brakes1
14Oil Change4
15Glass Repair1
Sheet1
Cell Formulas
RangeFormula
C12=MATCH(MID($B$11,SEARCH(" ",$B$11)+1,3)+0,$A$2:$A$6,0)
C13=MATCH(MID($B$11,SEARCH(" ",$B$11)+1,3)+0,$B$2:$B$6,0)
C14=MATCH(MID($B$11,SEARCH(" ",$B$11)+1,3)+0,$C$2:$C$6,0)
C15=MATCH(MID($B$11,SEARCH(" ",$B$11)+1,3)+0,$D$2:$D$6,0)
 
Upvote 0

Forum statistics

Threads
1,223,909
Messages
6,175,312
Members
452,634
Latest member
cpostell

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