Groups

L

Landin

I don't know if there's a formula to randomly select names and
separete/divide them into groups.

What i'm trying to do is that i have a list of names and i need to divide
them into 20 groups of 2.
 
S

smartin

Landin said:
I don't know if there's a formula to randomly select names and
separete/divide them into groups.

What i'm trying to do is that i have a list of names and i need to divide
them into 20 groups of 2.

You could put random numbers next to the names and sort on the number.
Then you have 20 reasonably random pairs.
 
L

Landin

Would you please show me how to do that?
If possible describe everything by steps because i don't have a lot of
experience with Excel...

thank you in advance!
 
S

smartin

The step-by-step instructions might differ depending on the version of
Excel you are using, but hopefully this gets you close.

Suppose your list of names is in column A. Next to the first name, in
column B, put

=RAND()

Fill this formula down to the last name. This will generate a random
number essentially between 0 and 1 on every row.

With the cursor still in column B, use Data | Sort. The sort dialog will
suggest you sort on column B ascending (you may wish to twiddle with the
"my data range has header row | no header row" setting). Click OK.

Your names will now be "sorted" by a random number.

This might look a little confusing at first because the RAND function
will recalculate when you do this... and the random numbers will no
longer be sorted. If you want to fix the random number values
permanently, select them, copy, then Edit | Paste Special, tick Values,
and OK.

Hope this helps!
 

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