Random Draw

Z

ZZ

Helloo Fellow members,

I need to know if there is a way I can make a random draw of names.
For example, I am arranging a snooker tournament of 12 peoples. All
the names are lets suppose listed in Column A, There will be Four
Groups consisting of 3 Names each. Group A, Group B, Group C, and
Group D.

What I need is to pick random names from Column A, and put them in
Groups.

Your help will be highly appreciated.

ZZ
 
P

Pete_UK

Put this formula in column B next to your first name:

=RAND()

and copy this down. Then sort columns A and B using column B as the
key field. Then pick the top 3 to go into group A, the next 3 into
group B, and so on.

Hope this helps.

Pete
 
Z

ZZ

Hi Pete,

The formula u specified works for numbers only. greater than 0 and
less than 1. It does not work on names.
 
Z

ZZ

Hi Pete,

The formula u specified works for numbers only. greater than 0 and
less than 1. It does not work on names.





- Show quoted text -

Oh.. I get it.. the random function assigns numbers to the names, and
than I have to sort the field to select names. Good short cut,
 
H

Henry

Top posting?

Is the problem sorting?

Try this to avoid sorting:

1. The 12 names are in cells A1 to A12
2. Type "=RAND()" into cell B1
3. Copy cell B1 into cells B2 to B12
4. Type "=CHAR(INT((RANK(B1,$B$1:$B$12)+194)/3))" into cell C1
5. Copy cell C1 into cells C2 to C12
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top