Transpose tables sorted by performance order

gotido

New Member
Joined
Dec 13, 2017
Messages
41
Office Version
  1. 365
Platform
  1. MacOS
I have 5 tables, which correspond to 5 supervisors:
supervisor 1: c7:w24
supervisor 2: c29:w46
supervisor 3:c51:w68
supervisor 4: c73:w85
supervisor 5: c90:w107

in the corner of the table is a value from 1 to 5 that identifies the order of the supervisors in their daily performance according to the objectives achieved

The value is in the following cells
supervisor 1: w7
supervisor 2: w29
supervisor 3: w51
supervisor 4: w73
supervisor 5: w90

I would like the 5 tables on the same sheet, starting from cell BA1, to appear transposed and ordered by the performance value of the supervisors from 1 to 5.

Imagine that one day Supervisor 1 is in third place, Supervisor 2 is in fifth place, Supervisor 3 is in first place, Supervisor 4 is in second place and Supervisor 5 is in fourth place, but the next day they change places.
How can I do this?
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
ok here is a first attempt with a mini example, in the w7 cell put the rank and below that add 0.1 to the rank so you get 1,1.1,1.2,1.3 etc
for the dynamic performance table use INDEX and MATCH to look for 1,1.1,1.2 etc and then 2,2.1,2.2 etc and drag across for your data columns
try the example below changing the rank from 1 to 2 and back again and watch the table change, is this what you are after

Book1
ABCDEFG
1s1jim11s1jim
2s1fred1.11.1s1fred
3s1bill1.21.2s1bill
4s1dave1.31.3s1dave
5s1steve1.41.4s1steve
6
7
8s2anne22s2anne
9s2lily2.12.1s2lily
10s2kirsten2.22.2s2kirsten
11s2kate2.32.3s2kate
12s2izzy2.42.4s2izzy
Sheet1
Cell Formulas
RangeFormula
F8:G12,F1:G5F1=INDEX(A$1:A$12,MATCH($E1,$C$1:$C$12,0))
E2:E5,C9:C12,E9:E12,C2:C5E2=E1+0.1
 
Upvote 0

Forum statistics

Threads
1,215,096
Messages
6,123,074
Members
449,094
Latest member
mystic19

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