I'm doing some commishing in the MBBL, and I really need some help producing a program that can crunch some numbers for the good of the BBRC.
MBBL tracks the win ratios of all races, but the number isn't all that significant, because they are affected by the skill of the involved coaches.
Therefore, I'd like to be able to calculate a teams "performance" - i.e. is it overperforming or underperforming compared to the coaches playing the race.
This is what I need:
*I need something where I can copy columns from html tables, and port them into the program.
*I need one table, where I can paste in a column of coach names and a column next to it where I can paste in the coaches average win-percentage.
That way each name should correspond to a number.
*Then, I need a second table, where I can again paste in a column of coach names, and a column of games played (by that coach) with the race I'm currently calculating.
The program should then take the coachs average win percentage (as pasted) and multiply it by his number of games with the race (as pasted) - and add up all those numbers - and divide that number by the sum of games played (with that race).
That's it.
Did it make sense.
To Clarify.
I first copy and paste 2 columns: coachs and average wins. F.ex.:
Aboon 42.30
Gilbert 33.33
Roger 50.00
Vix 72.01
Then I paste in their games with (say) Elfs:
Aboon 3
Gilbert 7
Vix 3
The expected win-percentage for Elfs would then be:
(3 * 42.30) + (7 * 33.33) + (3 * 72.01) / (3+7+3) = 44.33
If the Elf teams actual win percentage (which I've got) is higher, then it is overperforming. If it is lower then it is underperforming.
Is there anybody out there who is able and willing to do this?
Please

Martin