Hi, I'm wondering if I can have what I need in a single pivot table?
Let's say this is the input table - players scoring against different teams from various conferences:
[TABLE="width: 500"]
<tbody>[TR]
[TD]name[/TD]
[TD]vs team[/TD]
[TD]vs conf[/TD]
[TD]pts[/TD]
[/TR]
[TR]
[TD]player1[/TD]
[TD]team1[/TD]
[TD]east[/TD]
[TD]10[/TD]
[/TR]
[TR]
[TD]player1[/TD]
[TD]team1[/TD]
[TD]west[/TD]
[TD]40[/TD]
[/TR]
[TR]
[TD]player1[/TD]
[TD]team2[/TD]
[TD]east[/TD]
[TD]5[/TD]
[/TR]
[TR]
[TD]player1[/TD]
[TD]team2[/TD]
[TD]west[/TD]
[TD]25[/TD]
[/TR]
</tbody>[/TABLE]
etc
The real table has much more data than this. I would like to have a single pivot table which averages points in columns per different criteria like so:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Name[/TD]
[TD]Avg points total[/TD]
[TD]Avg vs team1[/TD]
[TD]Avg vs Team2[/TD]
[TD]Avg vs East[/TD]
[TD]Avg vs West[/TD]
[/TR]
[TR]
[TD]player1[/TD]
[TD]20[/TD]
[TD]25[/TD]
[TD]15[/TD]
[TD]7.5[/TD]
[TD]22.5[/TD]
[/TR]
</tbody>[/TABLE]
If I use columns, then the second column becomes a subgroup of the first one and I don't want that. Can you point me to the possible answer. Right now I have multiple pivot tables and then paste results from 1 column next to the other pivot table but that is quite awkward. Thanks
Let's say this is the input table - players scoring against different teams from various conferences:
[TABLE="width: 500"]
<tbody>[TR]
[TD]name[/TD]
[TD]vs team[/TD]
[TD]vs conf[/TD]
[TD]pts[/TD]
[/TR]
[TR]
[TD]player1[/TD]
[TD]team1[/TD]
[TD]east[/TD]
[TD]10[/TD]
[/TR]
[TR]
[TD]player1[/TD]
[TD]team1[/TD]
[TD]west[/TD]
[TD]40[/TD]
[/TR]
[TR]
[TD]player1[/TD]
[TD]team2[/TD]
[TD]east[/TD]
[TD]5[/TD]
[/TR]
[TR]
[TD]player1[/TD]
[TD]team2[/TD]
[TD]west[/TD]
[TD]25[/TD]
[/TR]
</tbody>[/TABLE]
etc
The real table has much more data than this. I would like to have a single pivot table which averages points in columns per different criteria like so:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Name[/TD]
[TD]Avg points total[/TD]
[TD]Avg vs team1[/TD]
[TD]Avg vs Team2[/TD]
[TD]Avg vs East[/TD]
[TD]Avg vs West[/TD]
[/TR]
[TR]
[TD]player1[/TD]
[TD]20[/TD]
[TD]25[/TD]
[TD]15[/TD]
[TD]7.5[/TD]
[TD]22.5[/TD]
[/TR]
</tbody>[/TABLE]
If I use columns, then the second column becomes a subgroup of the first one and I don't want that. Can you point me to the possible answer. Right now I have multiple pivot tables and then paste results from 1 column next to the other pivot table but that is quite awkward. Thanks