Hoping there is someone out there, with a genius mind in VBA or excel formulas.
I data set:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Name[/TD]
[TD]Location[/TD]
[TD]Outcome[/TD]
[/TR]
[TR]
[TD]Kris[/TD]
[TD]Barbados[/TD]
[TD]W[/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD]Glasgow[/TD]
[TD]L[/TD]
[/TR]
[TR]
[TD]Kris[/TD]
[TD]Birmingham[/TD]
[TD]W[/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD]Barbados[/TD]
[TD]L[/TD]
[/TR]
[TR]
[TD]Kris[/TD]
[TD]Birmingham[/TD]
[TD]W[/TD]
[/TR]
[TR]
[TD]Kris[/TD]
[TD]London[/TD]
[TD]L[/TD]
[/TR]
[TR]
[TD]Kris[/TD]
[TD]London[/TD]
[TD]W[/TD]
[/TR]
[TR]
[TD]Kris[/TD]
[TD]London[/TD]
[TD]L[/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD]London[/TD]
[TD]W[/TD]
[/TR]
</tbody>[/TABLE]
I want to show in another table the most successful location for Kris, in this instance it would be Birmingham with two wins, although London is most visited location for Kris. (See table below for example).
[TABLE="width: 500"]
<tbody>[TR]
[TD]Name[/TD]
[TD]Most Visited[/TD]
[TD]Most Successful[/TD]
[/TR]
[TR]
[TD]Kris[/TD]
[TD]London[/TD]
[TD]Birmingham[/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD]-[/TD]
[TD]London[/TD]
[/TR]
</tbody>[/TABLE]
I data set:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Name[/TD]
[TD]Location[/TD]
[TD]Outcome[/TD]
[/TR]
[TR]
[TD]Kris[/TD]
[TD]Barbados[/TD]
[TD]W[/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD]Glasgow[/TD]
[TD]L[/TD]
[/TR]
[TR]
[TD]Kris[/TD]
[TD]Birmingham[/TD]
[TD]W[/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD]Barbados[/TD]
[TD]L[/TD]
[/TR]
[TR]
[TD]Kris[/TD]
[TD]Birmingham[/TD]
[TD]W[/TD]
[/TR]
[TR]
[TD]Kris[/TD]
[TD]London[/TD]
[TD]L[/TD]
[/TR]
[TR]
[TD]Kris[/TD]
[TD]London[/TD]
[TD]W[/TD]
[/TR]
[TR]
[TD]Kris[/TD]
[TD]London[/TD]
[TD]L[/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD]London[/TD]
[TD]W[/TD]
[/TR]
</tbody>[/TABLE]
I want to show in another table the most successful location for Kris, in this instance it would be Birmingham with two wins, although London is most visited location for Kris. (See table below for example).
[TABLE="width: 500"]
<tbody>[TR]
[TD]Name[/TD]
[TD]Most Visited[/TD]
[TD]Most Successful[/TD]
[/TR]
[TR]
[TD]Kris[/TD]
[TD]London[/TD]
[TD]Birmingham[/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD]-[/TD]
[TD]London[/TD]
[/TR]
</tbody>[/TABLE]