Welcome to Lockergnome.com!
HomeHome FAQFAQ   SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log in/Register/PasswordLog in/Register/Password

generate randomly assigned lists

 
   Home -> Office -> New Users RSS
Next:  New Users: More to do with COMMENTS in Excel 2007  
Author Message
jt mwc

External


Since: Aug 06, 2007
Posts: 2



(Msg. 1) Posted: Mon Aug 06, 2007 3:58 pm
Post subject: generate randomly assigned lists
Archived from groups: microsoft>public>excel>newusers (more info?)

I have a list of 36 names, we would like to be able to generate lists of
randomly assigned groups such as 3 groups of 12 names or 4 groups of 9 names,
etc. Needs to be completely random assignments. Is there a quick way to do
this with excel 2003?
Back to top
Login to vote
joeu2004

External


Since: Jun 10, 2007
Posts: 123



(Msg. 2) Posted: Mon Aug 06, 2007 4:25 pm
Post subject: Re: generate randomly assigned lists [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Aug 6, 3:58 pm, jt mwc <jt... DeleteThis @discussions.microsoft.com> wrote:
> I have a list of 36 names, we would like to be able to generate lists of
> randomly assigned groups such as 3 groups of 12 names or 4 groups
> of 9 names, etc. Needs to be completely random assignments. Is
> there a quick way to do this with excel 2003?

As a manual process, put =RAND() into the 36 cells of a column (or
row) adjacent to your data, select both columns (or rows), and click
on Data >> Sort to sort based on the column with RAND(). (Note: The
act of sorting will change all the values of the RAND() cells. No
matter; you don't really care what those values are.)

That randomizes the entire list of 36 names. Now, simply break them
into groups of whatever size you wish.

(You can also delete the column or row that contains the RAND()
values.)
Back to top
Login to vote
Gary''s Student

External


Since: Oct 01, 2005
Posts: 3200



(Msg. 3) Posted: Mon Aug 06, 2007 4:28 pm
Post subject: RE: generate randomly assigned lists [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Put the names in column A and =RAND() in column B.

Sort both columns by column B. Then just pick off the first three or the
first fourm etc.
--
Gary''s Student - gsnu200735


"jt mwc" wrote:

> I have a list of 36 names, we would like to be able to generate lists of
> randomly assigned groups such as 3 groups of 12 names or 4 groups of 9 names,
> etc. Needs to be completely random assignments. Is there a quick way to do
> this with excel 2003?
Back to top
Login to vote
Max

External


Since: Mar 17, 2004
Posts: 1619



(Msg. 4) Posted: Mon Aug 06, 2007 7:16 pm
Post subject: Re: generate randomly assigned lists [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

One way which delivers exactly what you're after ..

Illustrated in this template:
http://www.flypicture.com/download/MTE1OTM=
Random assign 36 names to 4x9 n 3x12.xls

Source items assumed listed in A1:A36
In B1: =RAND()
In C1: =INDEX(A$1:A$36,RANK(B1,B$1:B$36))
Select B1:C1, copy down to C36

Now, set it up to extract from the randomized list in C1:C36
for the 2 desired groupings

Random 3 groups of 12 names
In F2: =OFFSET($C$1,ROW(A1)*12-12+COLUMN(A1)-1,)
Copy F2 across by 12 cols to Q2, fill down by 3 rows to Q4

Random 4 groups of 9 names
In F7: =OFFSET($C$1,ROW(A1)*9-9+COLUMN(A1)-1,)
Copy F7 across by 9 cols to N7, fill down by 4 rows to N10

Press F9 to regenerate ..
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"jt mwc" wrote:
> I have a list of 36 names, we would like to be able to generate lists of
> randomly assigned groups such as 3 groups of 12 names or 4 groups of 9 names,
> etc. Needs to be completely random assignments. Is there a quick way to do
> this with excel 2003?
Back to top
Login to vote
Max

External


Since: Mar 17, 2004
Posts: 1619



(Msg. 5) Posted: Tue Aug 07, 2007 3:56 am
Post subject: Re: generate randomly assigned lists [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

> http://www.flypicture.com/download/MTE1OTM=

In case you're having difficulties with the above link, just do a copy n
paste of the entire link (inclusive of the "=" at the end) into your
browser's address bar, press ENTER. That should give you the correct d/l
button at flypicture.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
Back to top
Login to vote
jt mwc

External


Since: Aug 06, 2007
Posts: 2



(Msg. 6) Posted: Wed Aug 08, 2007 8:32 am
Post subject: Re: generate randomly assigned lists [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Thanks so much this is exactly what I was looking for!

"Max" wrote:

> One way which delivers exactly what you're after ..
>
> Illustrated in this template:
> http://www.flypicture.com/download/MTE1OTM=
> Random assign 36 names to 4x9 n 3x12.xls
>
> Source items assumed listed in A1:A36
> In B1: =RAND()
> In C1: =INDEX(A$1:A$36,RANK(B1,B$1:B$36))
> Select B1:C1, copy down to C36
>
> Now, set it up to extract from the randomized list in C1:C36
> for the 2 desired groupings
>
> Random 3 groups of 12 names
> In F2: =OFFSET($C$1,ROW(A1)*12-12+COLUMN(A1)-1,)
> Copy F2 across by 12 cols to Q2, fill down by 3 rows to Q4
>
> Random 4 groups of 9 names
> In F7: =OFFSET($C$1,ROW(A1)*9-9+COLUMN(A1)-1,)
> Copy F7 across by 9 cols to N7, fill down by 4 rows to N10
>
> Press F9 to regenerate ..
> --
> Max
> Singapore
> http://savefile.com/projects/236895
> xdemechanik
> ---
> "jt mwc" wrote:
> > I have a list of 36 names, we would like to be able to generate lists of
> > randomly assigned groups such as 3 groups of 12 names or 4 groups of 9 names,
> > etc. Needs to be completely random assignments. Is there a quick way to do
> > this with excel 2003?
Back to top
Login to vote
Max

External


Since: Sep 08, 2003
Posts: 3297



(Msg. 7) Posted: Thu Aug 09, 2007 2:15 am
Post subject: Re: generate randomly assigned lists [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Welcome. Great to hear that.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"jt mwc" <jtmwc.TakeThisOut@discussions.microsoft.com> wrote in message
news:453C6011-5424-4F49-A9DA-BABCEC3FE761@microsoft.com...
> Thanks so much this is exactly what I was looking for!
Back to top
Login to vote
Display posts from previous:   
       Home -> Office -> New Users All times are: Eastern Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

Categories:
 General
 Microsoft Windows XP
 Microsoft Windows Vista
 Microsoft Windows (other)
  Microsoft Office
 Microsoft Office (other)
 Computer Security
 Linux
 Movies


[ Contact us | Terms of Service/Privacy Policy ]