Gealer

New Member
Joined
Sep 19, 2018
Messages
19
Colleague

TEAM
Course id 123
Course id 124
Course id 125
Course id 126
Course id 127
Course id 128
Colleague 1
TEAM A
Successful
Successful
Successful
Successful
Successful
Successful
Colleague 2
TEAM B
In Progress
In Progress
Not Registered
Successful
Successful
In Progress
Colleague 3
TEAM C
Not Registered
Successful
Not Registered
Not Registered
Not Registered
Not Registered
Colleague 4
TEAM D
Successful
In Progress
Successful
Successful
Successful
Successful
Colleague 5
TEAM A
In Progress
Not Registered
In Progress
In Progress
In Progress
In Progress
Colleague 6
TEAM B
Not Registered
Successful
Not Registered
Not Registered
Not Registered
Not Registered
Colleague 7
TEAM C
Successful
In Progress
Successful
Successful
Successful
Successful
Colleague 8
TEAM D
In Progress
Not Registered
In Progress
In Progress
In Progress
In Progress
Colleague 9
TEAM A
Not Registered
Successful
Not Registered
Not Registered
Not Registered
Not Registered
Colleague 10
TEAM B
Successful
In Progress
Successful
Successful
Successful
Successful
Colleague 11
TEAM C
In Progress
Not Registered
In Progress
In Progress
In Progress
In Progress
Colleague 12
TEAM D
Not Registered
Successful
Not Registered
Successful
Successful
Not Registered
Colleague 13
TEAM A
Successful
In Progress
Successful
Successful
Successful
Successful
Colleague 14
TEAM B
In Progress
In Progress
In Progress
In Progress
In Progress
In Progress
Colleague 15
TEAM C
Not Registered
Not Registered
In Progress
Successful
Not Registered
Not Registered
Team A
Course id 123
Course id 124
Course id 125
Course id 126
Course id 127
Course id 128
Successful
In Progress
Not Registered
Team B
Successful
In Progress
Not Registered
Team C
Successful
In Progress
Not Registered
Team D
Successful
In Progress
Not Registered

<tbody>
</tbody>

I am new to using pivot tables but i have my data set at the top and would like the table at the bottom to be produced.
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
if it's what you want, use PowerQuery to UnPivot table

Code:
[SIZE=1]let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    #"Unpivoted Other Columns" = Table.UnpivotOtherColumns(Source, {"Colleague", "TEAM"}, "Attribute", "Value")
in
    #"Unpivoted Other Columns"[/SIZE]

then use Query Table for normal PivotTable

Column Labels
Row LabelsCourse id 123Course id 124Course id 125Course id 126Course id 127Course id 128
TEAM A
In Progress
Not Registered
Successful
TEAM B
In Progress
Not Registered
Successful
TEAM C
In Progress
Not Registered
Successful
TEAM D
In Progress
Not Registered
Successful
 
Upvote 0

Forum statistics

Threads
1,215,066
Messages
6,122,948
Members
449,095
Latest member
nmaske

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