- Oct 24, 2000
- 29,767
- 33
- 81
Let's say I have 4 of the same prize and I need to award these to 5 potential candidates. Meaning, there will be 4 winners and 1 loser. Sadly. There is no way I can award the 4 prizes based on merit or anything. And I want each of the 5 people to have an EQUAL chance of winning a prize until all 4 are exhausted.
This is what I want to do in Excel...
Assign each candidate a random ID number:
Person A, =RANDBETWEEN(0,9)
Person B, =RANDBETWEEN(10,19)
Person C, =RANDBETWEEN(20,29)
Person D, =RANDBETWEEN(30,39)
Person E, =RANDBETWEEN(40,49)
And then have a PICK number: =RANDBETWEEN(0,49)
When the PICK # = Person ID # then that Person wins a prize. I then take that winner out of the scenario and then re-run the pick process until all 4 prizes have been distributed. Of course each time I run this, the random ID numbers and pick numbers change.
Does this logic seem sound for what I want to do?
Should the PICK # remain between 0 and 49 until all 4 prizes have been distributed or should that change as winners are removed from the scenario?
So the second iteration would look like...
Person A, =RANDBETWEEN(0,9)
Person B, =RANDBETWEEN(10,19)
Person D, =RANDBETWEEN(20,29)
Person E, =RANDBETWEEN(30,39)
And then have a PICK number: =RANDBETWEEN(0,39)
This is what I want to do in Excel...
Assign each candidate a random ID number:
Person A, =RANDBETWEEN(0,9)
Person B, =RANDBETWEEN(10,19)
Person C, =RANDBETWEEN(20,29)
Person D, =RANDBETWEEN(30,39)
Person E, =RANDBETWEEN(40,49)
And then have a PICK number: =RANDBETWEEN(0,49)
When the PICK # = Person ID # then that Person wins a prize. I then take that winner out of the scenario and then re-run the pick process until all 4 prizes have been distributed. Of course each time I run this, the random ID numbers and pick numbers change.
Does this logic seem sound for what I want to do?
Should the PICK # remain between 0 and 49 until all 4 prizes have been distributed or should that change as winners are removed from the scenario?
So the second iteration would look like...
Person A, =RANDBETWEEN(0,9)
Person B, =RANDBETWEEN(10,19)
Person D, =RANDBETWEEN(20,29)
Person E, =RANDBETWEEN(30,39)
And then have a PICK number: =RANDBETWEEN(0,39)