Weighted Football Draft Order

Boogamil

New Member
Joined
Aug 13, 2003
Messages
26
I'm hoping that someone can help me with this minor issue. We have a football draft every year and the first year we generated the draft order through a random number formula.

In year two we want to use a weighted random number based on the place that you finished the previous year. If we were to do this through ping pong balls in a box, the tenth place team would have 10 balls, ninth would have 9 balls and so on. Therefore the first place team could still get the first pick in the draft, but they would only have a one in fifty-five chance.

Can this be done through a formula?

Any help would be greatly appreciated.
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Mark W.

Thank you very much for responding to my post. I don't mean to appear thick, I may have no choice though. How does this arrive at a weighted draft order?

:unsure:
 
Upvote 0
You know, I wondered that too, but what Mark has given indeed has all the information you need. In the example shown, the Drawing number in H1 indicates that Team B, who holds the range 2-3, has managed to score the first draft pick. If the Draw number had been 4, 5 or 6, the first pick would go to Team C. Recalculating (hit F9) will produce a new Draw number.
The only problem with this method is that repeated random generation is unlikely to produce the numbers 1-10 (the number of draft picks available in this case) without repetition.
It will still work, if you just ignore any draw number that has already been used, but let us know if you need more help or a more refined solution.
 
Upvote 0
Just horning in on Mark's unique reply. If you break down the range into two columns

D2 =IF(B2=1,1,C2-B2+1) copied down

E2 =IF(B2=1,1,C2-B2+1&"-"&C2) copied down

F2 =IF(AND($H$1>=D2,$H$1<=E2),A2,"") copied down

The formula in column F will look at the random number generated in H1 and highlight the team that the number represents.

yoyoPHIL
 
Upvote 0
Upvote 0
This works well, but how do you remove repetition of a team, as they can only draft once per round?
 
Upvote 0

Forum statistics

Threads
1,214,614
Messages
6,120,533
Members
448,969
Latest member
mirek8991

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